angular-growl-notifications
Version:

22 lines (18 loc) • 526 B
JavaScript
(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'
]);
})();