Fixed injection minification issue (#8608)

This commit is contained in:
Keith Holliday
2017-03-28 13:12:51 -06:00
committed by GitHub
parent 4846bc5769
commit d170f0b1bd

View File

@@ -25,9 +25,9 @@
$modal.open({
templateUrl: 'modals/task-extra-notes.html',
controller: function ($scope, task) {
controller: ['$scope', 'task', function ($scope, task) {
$scope.task = task;
},
}],
resolve: {
task: function() {
return task;