Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
feat(myApp.controllers): add $scope param to clarify annotation
Browse files Browse the repository at this point in the history
Closes #154
  • Loading branch information
petebacondarwin committed May 3, 2014
1 parent b76b5f5 commit fbfde7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/js/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
/* Controllers */

angular.module('myApp.controllers', [])
.controller('MyCtrl1', [function() {
.controller('MyCtrl1', ['$scope', function($scope) {

}])
.controller('MyCtrl2', [function() {
.controller('MyCtrl2', ['$scope', function($scope) {

}]);

0 comments on commit fbfde7c

Please sign in to comment.