slush-y
Version:
A slush generator for Best Practices with AngularJS Fullstack applications.
28 lines (22 loc) • 626 B
JavaScript
;(function(){
'use strict';
angular
.module('<%= moduleNames.slug %>')
.controller('<%= names.classed %>Controller', <%= names.classed %>Controller);
/* @inject */
function <%= names.classed %>Controller(<%=providers%>) {
// <%= names.humanized %> controller logic
$scope.val = 0;
<% _.forEach( functions, function(func){ %>
$scope.<%=func%> = <%=func%>;<% }) %>
//////////////////
<% _.forEach(functions, function(func){ %>
/*
* <%= func %> description
* @return {[type]} description
*
*/
function <%= func %>() {}
<% }) %>
}
}).call(this);