Skip to content

Commit

Permalink
fix(app.js): add missing parameter
Browse files Browse the repository at this point in the history
All dependencies should have a functional reference.

Closes angular-app#256
  • Loading branch information
hjast authored and petebacondarwin committed Aug 24, 2014
1 parent 4575a7b commit 244c779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ angular.module('app').run(['security', function(security) {
security.requestCurrentUser();
}]);

angular.module('app').controller('AppCtrl', ['$scope', 'i18nNotifications', 'localizedMessages', function($scope, i18nNotifications) {
angular.module('app').controller('AppCtrl', ['$scope', 'i18nNotifications', 'localizedMessages', function($scope, i18nNotifications, localizedMessages) {

$scope.notifications = i18nNotifications;

Expand Down

0 comments on commit 244c779

Please sign in to comment.