1
- ( function ( window , document ) {
2
- // Create all modules and define dependencies to make sure they exist
3
- // and are loaded in the correct order to satisfy dependency injection
4
- // before all nested files are concatenated by Grunt
5
-
6
- // Config
7
- angular . module ( 'growlNotifications.config' , [ ] )
8
- . value ( 'growlNotifications.config' , {
9
- debug : true
10
- } ) ;
11
-
12
- // Modules
13
- angular . module ( 'growlNotifications.directives' , [ ] ) ;
14
- angular . module ( 'growlNotifications.filters' , [ ] ) ;
15
- angular . module ( 'growlNotifications.services' , [ ] ) ;
16
- angular . module ( 'growlNotifications' ,
17
- [
18
- 'growlNotifications.config' ,
19
- 'growlNotifications.directives' ,
20
- 'growlNotifications.filters' ,
21
- 'growlNotifications.services'
22
- ] ) ;
23
- angular . module ( 'growlNotifications.directives' )
24
- . directive ( 'growlNotification' , [ 'growlNotifications' , '$animate' , '$timeout' , function ( growlNotifications , $animate , $timeout ) {
1
+ ( function ( ) {
2
+
3
+ // Config
4
+ angular . module ( 'growlNotifications.config' , [ ] )
5
+ . value ( 'growlNotifications.config' , {
6
+ debug : true
7
+ } ) ;
8
+
9
+ // Modules
10
+ angular . module ( 'growlNotifications.directives' , [ ] ) ;
11
+ angular . module ( 'growlNotifications.filters' , [ ] ) ;
12
+ angular . module ( 'growlNotifications.services' , [ ] ) ;
13
+ angular . module ( 'growlNotifications' ,
14
+ [
15
+ 'growlNotifications.config' ,
16
+ 'growlNotifications.directives' ,
17
+ 'growlNotifications.filters' ,
18
+ 'growlNotifications.services'
19
+ ] ) ;
20
+
21
+ } ) ( ) ; ( function ( ) {
22
+
23
+ function growlNotificationDirective ( growlNotifications , $animate , $timeout ) {
25
24
26
25
var defaults = {
27
26
ttl : growlNotifications . options . ttl || 5000
@@ -42,33 +41,8 @@ angular.module('growlNotifications.directives')
42
41
43
42
/**
44
43
* Controller
45
- *
46
- * @param $scope
47
- * @param $element
48
- * @param $attrs
49
44
*/
50
- controller : [ '$scope' , '$element' , function ( $scope , $element ) {
51
-
52
- /**
53
- * Placeholder for timer promise
54
- */
55
- this . timer = null ;
56
-
57
- /**
58
- * Helper method to close notification manually
59
- */
60
- this . remove = function ( ) {
61
-
62
- // Remove the element
63
- $animate . leave ( $element ) ;
64
-
65
- // Cancel scheduled automatic removal if there is one
66
- if ( this . timer && this . timer . cancel ) {
67
- this . timer . cancel ( ) ;
68
- }
69
- } ;
70
-
71
- } ] ,
45
+ controller : growlNotificationController ,
72
46
73
47
/**
74
48
* Make the controller available in the directive scope
@@ -88,7 +62,7 @@ angular.module('growlNotifications.directives')
88
62
// Assemble options
89
63
var options = angular . extend ( { } , defaults , scope . $eval ( iAttrs . growlNotificationOptions ) ) ;
90
64
91
- if ( iAttrs . ttl ) {
65
+ if ( iAttrs . ttl ) {
92
66
options . ttl = scope . $eval ( iAttrs . ttl ) ;
93
67
}
94
68
@@ -103,8 +77,56 @@ angular.module('growlNotifications.directives')
103
77
}
104
78
} ;
105
79
106
- } ] ) ; angular . module ( 'growlNotifications.directives' )
107
- . directive ( 'growlNotifications' , [ 'growlNotifications' , function ( growlNotifications ) {
80
+ }
81
+
82
+ // Inject dependencies
83
+ growlNotificationDirective . $inject = [ 'growlNotifications' , '$animate' , '$timeout' ] ;
84
+
85
+ /**
86
+ * Directive controller
87
+ *
88
+ * @param $scope
89
+ * @param $element
90
+ */
91
+ function growlNotificationController ( $scope , $element ) {
92
+
93
+ /**
94
+ * Placeholder for timer promise
95
+ */
96
+ this . timer = null ;
97
+
98
+ /**
99
+ * Helper method to close notification manually
100
+ */
101
+ this . remove = function ( ) {
102
+
103
+ // Remove the element
104
+ $animate . leave ( $element ) ;
105
+
106
+ // Cancel scheduled automatic removal if there is one
107
+ if ( this . timer && this . timer . cancel ) {
108
+ this . timer . cancel ( ) ;
109
+ }
110
+ } ;
111
+
112
+ }
113
+
114
+ // Inject dependencies
115
+ growlNotificationController . $inject = [ '$scope' , '$element' ] ;
116
+
117
+ // Export
118
+ angular
119
+ . module ( 'growlNotifications.directives' )
120
+ . directive ( 'growlNotification' , growlNotificationDirective ) ;
121
+
122
+ } ) ( ) ; ( function ( ) {
123
+
124
+ /**
125
+ * Create directive definition object
126
+ *
127
+ * @param growlNotifications
128
+ */
129
+ function growlNotificationsDirective ( growlNotifications ) {
108
130
109
131
return {
110
132
@@ -126,57 +148,77 @@ angular.module('growlNotifications.directives')
126
148
}
127
149
} ;
128
150
129
- } ] ) ; angular . module ( 'growlNotifications.services' )
130
- . provider ( 'growlNotifications' , [ function ( ) {
131
-
132
- // Default options
133
- var options = {
134
- ttl : 5000
135
- } ;
136
-
137
- /**
138
- * Provider method to change default options
139
- *
140
- * @param newOptions
141
- */
142
- this . setOptions = function ( newOptions ) {
143
- angular . extend ( options , newOptions ) ;
144
- return this ;
145
- } ;
146
-
147
- /**
148
- * Provider convenience method to get or set default ttl
149
- *
150
- * @param ttl
151
- * @returns {* }
152
- */
153
- this . ttl = function ( ttl ) {
154
- if ( angular . isDefined ( ttl ) ) {
155
- options . ttl = ttl ;
156
- return this ;
157
- }
158
- return options . ttl ;
159
- } ;
160
-
161
- /**
162
- * Factory method
163
- *
164
- * @param $timeout
165
- * @param $rootScope
166
- * @returns {GrowlNotifications }
167
- */
168
- this . $get = function ( ) {
169
-
170
- function GrowlNotifications ( ) {
171
-
172
- this . options = options ;
173
- this . element = null ;
174
-
175
- }
176
-
177
- return new GrowlNotifications ( ) ;
178
-
179
- } ;
180
-
181
- } ] ) ;
182
- } ) ( window , document ) ;
151
+ }
152
+
153
+ // Inject dependencies
154
+ growlNotificationsDirective . $inject = [ 'growlNotifications' ] ;
155
+
156
+ // Export
157
+ angular
158
+ . module ( 'growlNotifications.directives' )
159
+ . directive ( 'growlNotifications' , growlNotificationsDirective ) ;
160
+
161
+ } ) ( ) ; ( function ( ) {
162
+
163
+ /**
164
+ * Growl notifications provider
165
+ */
166
+ function growlNotificationsProvider ( ) {
167
+
168
+ // Default options
169
+ var options = {
170
+ ttl : 5000
171
+ } ;
172
+
173
+ /**
174
+ * Provider method to change default options
175
+ *
176
+ * @param newOptions
177
+ */
178
+ this . setOptions = function ( newOptions ) {
179
+ angular . extend ( options , newOptions ) ;
180
+ return this ;
181
+ } ;
182
+
183
+ /**
184
+ * Provider convenience method to get or set default ttl
185
+ *
186
+ * @param ttl
187
+ * @returns {* }
188
+ */
189
+ this . ttl = function ( ttl ) {
190
+ if ( angular . isDefined ( ttl ) ) {
191
+ options . ttl = ttl ;
192
+ return this ;
193
+ }
194
+ return options . ttl ;
195
+ } ;
196
+
197
+ /**
198
+ * Factory method
199
+ *
200
+ * @param $timeout
201
+ * @param $rootScope
202
+ * @returns {GrowlNotifications }
203
+ */
204
+ this . $get = function ( ) {
205
+
206
+ function GrowlNotifications ( ) {
207
+
208
+ this . options = options ;
209
+ this . element = null ;
210
+
211
+ }
212
+
213
+ return new GrowlNotifications ( ) ;
214
+
215
+ } ;
216
+
217
+ }
218
+
219
+ // Export
220
+ angular
221
+ . module ( 'growlNotifications.services' )
222
+ . provider ( 'growlNotifications' , growlNotificationsProvider ) ;
223
+
224
+ } ) ( ) ;
0 commit comments