Skip to content

Commit

Permalink
deleting unnecesary dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kensuka21 committed Jun 8, 2016
1 parent 8117d19 commit 5d8611d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function myTodoCreateModal() {
onSuccess: '&'
},
templateUrl: 'sections/todo/directives/create/todo.create.modal.html',
controller: ['$scope', 'Todo', 'Auth', myTodoCreateModalController]
controller: ['$scope', 'Todo', myTodoCreateModalController]
}
}

Expand All @@ -33,7 +33,7 @@ function myTodoCreateModalBtnController($scope) {
}
}

function myTodoCreateModalController($scope, Todo, Auth) {
function myTodoCreateModalController($scope, Todo) {

$scope.create = create;

Expand Down

0 comments on commit 5d8611d

Please sign in to comment.