Skip to content

Commit 86e643c

Browse files
committed
Directive attributes passed using array notation
1 parent 78c7699 commit 86e643c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/angular-resizable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
angular.module('angularResizable', [])
2-
.directive('resizable', function($parse) {
2+
.directive('resizable', ['$parse', function($parse) {
33
var toCall;
44
function throttle(fun) {
55
if (toCall === undefined) {
@@ -165,4 +165,4 @@ angular.module('angularResizable', [])
165165
});
166166
}
167167
};
168-
});
168+
}]);

0 commit comments

Comments
 (0)