UNPKG

angular-growl-notifications

Version:

![AngularJS Growl Notifications](http://i.imgur.com/F4ttQxo.png)

22 lines (18 loc) 526 B
(function () { // Config angular.module('growlNotifications.config', []) .value('growlNotifications.config', { debug: true }); // Modules angular.module('growlNotifications.directives', []); angular.module('growlNotifications.filters', []); angular.module('growlNotifications.services', []); angular.module('growlNotifications', [ 'growlNotifications.config', 'growlNotifications.directives', 'growlNotifications.filters', 'growlNotifications.services' ]); })();