rewrite: add back in bulid-safe angular DI

This commit is contained in:
Tyler Renelle
2013-08-28 00:28:50 -04:00
parent e355627bf0
commit e641fe9cf1
6 changed files with 17 additions and 13 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
"use strict";
habitrpg.controller("TasksCtrl", function($scope, $rootScope, $location, User, Algos, Helpers, Notification) {
habitrpg.controller("TasksCtrl", ['$scope', '$rootScope', '$location', 'User', 'Algos', 'Helpers', 'Notification',
function($scope, $rootScope, $location, User, Algos, Helpers, Notification) {
/*FIXME
*/
$scope.taskLists = [
@@ -152,4 +153,4 @@ habitrpg.controller("TasksCtrl", function($scope, $rootScope, $location, User, A
});
}
};
});
}]);