fiestah/angular-money-directive

Strict DI Error

Closed this issue · 3 comments

Directive definitions do not follow the minification guildelines:

.directive('money', function($parse) { ... })

Should be

.directive('money', ['$parse', function($parse) { ... }])

Can you please fix?

The files in dist are correctly annotated. I'll fix package.json to point to that though.

Hey, thanks for fixing :)

However the main in bower.json still points to the non-dist one, can you change to "./dist/angular-money-directive.js" please?

@OmriAharon done in v1.2.3