Skip to content

Commit aa4b662

Browse files
committed
fixed controller to use un-minified template as default
1 parent 390f44d commit aa4b662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: templates/javascript/controller.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict';
22

33
angular.module('<%= _.camelize(appname) %>App')
4-
.controller('<%= _.classify(name) %>Ctrl', ['$scope', '$http', function ($scope, $http) {
4+
.controller('<%= _.classify(name) %>Ctrl', function ($scope, $http) {
55
$http.get('/api/awesomeThings').success(function(awesomeThings) {
66
$scope.awesomeThings = awesomeThings;
77
});
8-
}]);
8+
});

0 commit comments

Comments
 (0)