diff --git a/src/angular-resizable.js b/src/angular-resizable.js index f158809..fa32bfb 100644 --- a/src/angular-resizable.js +++ b/src/angular-resizable.js @@ -1,5 +1,5 @@ angular.module('angularResizable', []) - .directive('resizable', function($parse) { + .directive('resizable', ['$parse', function($parse) { var toCall; function throttle(fun) { if (toCall === undefined) { @@ -165,4 +165,4 @@ angular.module('angularResizable', []) }); } }; - }); + }]);