@@ -96,6 +96,15 @@ var $AnimateProvider = ['$provide', function($provide) {
96
96
return currentDefer . promise ;
97
97
}
98
98
99
+ function applyStyles ( element , styles ) {
100
+ if ( angular . isObject ( styles ) ) {
101
+ if ( styles . before || styles . after ) {
102
+ styles = extend ( styles . before || { } , styles . after || { } ) ;
103
+ }
104
+ element . css ( styles ) ;
105
+ }
106
+ }
107
+
99
108
/**
100
109
*
101
110
* @ngdoc service
@@ -128,9 +137,11 @@ var $AnimateProvider = ['$provide', function($provide) {
128
137
* a child (if the after element is not present)
129
138
* @param {DOMElement } after the sibling element which will append the element
130
139
* after itself
140
+ * @param {object= } styles an optional collection of styles that will be applied to the element.
131
141
* @return {Promise } the animation callback promise
132
142
*/
133
- enter : function ( element , parent , after ) {
143
+ enter : function ( element , parent , after , styles ) {
144
+ applyStyles ( element , styles ) ;
134
145
after ? after . after ( element )
135
146
: parent . prepend ( element ) ;
136
147
return asyncPromise ( ) ;
@@ -144,9 +155,10 @@ var $AnimateProvider = ['$provide', function($provide) {
144
155
* @description Removes the element from the DOM. When the function is called a promise
145
156
* is returned that will be resolved at a later time.
146
157
* @param {DOMElement } element the element which will be removed from the DOM
158
+ * @param {object= } styles an optional collection of styles that will be applied to the element.
147
159
* @return {Promise } the animation callback promise
148
160
*/
149
- leave : function ( element ) {
161
+ leave : function ( element , styles ) {
150
162
element . remove ( ) ;
151
163
return asyncPromise ( ) ;
152
164
} ,
@@ -166,12 +178,13 @@ var $AnimateProvider = ['$provide', function($provide) {
166
178
* inserted into (if the after element is not present)
167
179
* @param {DOMElement } after the sibling element where the element will be
168
180
* positioned next to
181
+ * @param {object= } styles an optional collection of styles that will be applied to the element.
169
182
* @return {Promise } the animation callback promise
170
183
*/
171
- move : function ( element , parent , after ) {
184
+ move : function ( element , parent , after , styles ) {
172
185
// Do not remove element before insert. Removing will cause data associated with the
173
186
// element to be dropped. Insert will implicitly do the remove.
174
- return this . enter ( element , parent , after ) ;
187
+ return this . enter ( element , parent , after , styles ) ;
175
188
} ,
176
189
177
190
/**
@@ -184,15 +197,17 @@ var $AnimateProvider = ['$provide', function($provide) {
184
197
* @param {DOMElement } element the element which will have the className value
185
198
* added to it
186
199
* @param {string } className the CSS class which will be added to the element
200
+ * @param {object= } styles an optional collection of styles that will be applied to the element.
187
201
* @return {Promise } the animation callback promise
188
202
*/
189
- addClass : function ( element , className ) {
203
+ addClass : function ( element , className , styles ) {
190
204
className = ! isString ( className )
191
205
? ( isArray ( className ) ? className . join ( ' ' ) : '' )
192
206
: className ;
193
207
forEach ( element , function ( element ) {
194
208
jqLiteAddClass ( element , className ) ;
195
209
} ) ;
210
+ applyStyles ( element , styles ) ;
196
211
return asyncPromise ( ) ;
197
212
} ,
198
213
@@ -206,15 +221,17 @@ var $AnimateProvider = ['$provide', function($provide) {
206
221
* @param {DOMElement } element the element which will have the className value
207
222
* removed from it
208
223
* @param {string } className the CSS class which will be removed from the element
224
+ * @param {object= } styles an optional collection of styles that will be applied to the element.
209
225
* @return {Promise } the animation callback promise
210
226
*/
211
- removeClass : function ( element , className ) {
227
+ removeClass : function ( element , className , styles ) {
212
228
className = ! isString ( className )
213
229
? ( isArray ( className ) ? className . join ( ' ' ) : '' )
214
230
: className ;
215
231
forEach ( element , function ( element ) {
216
232
jqLiteRemoveClass ( element , className ) ;
217
233
} ) ;
234
+ applyStyles ( element , styles ) ;
218
235
return asyncPromise ( ) ;
219
236
} ,
220
237
@@ -229,11 +246,13 @@ var $AnimateProvider = ['$provide', function($provide) {
229
246
* removed from it
230
247
* @param {string } add the CSS classes which will be added to the element
231
248
* @param {string } remove the CSS class which will be removed from the element
249
+ * @param {object= } styles an optional collection of styles that will be applied to the element.
232
250
* @return {Promise } the animation callback promise
233
251
*/
234
- setClass : function ( element , add , remove ) {
252
+ setClass : function ( element , add , remove , styles ) {
235
253
this . addClass ( element , add ) ;
236
254
this . removeClass ( element , remove ) ;
255
+ applyStyles ( element , styles ) ;
237
256
return asyncPromise ( ) ;
238
257
} ,
239
258
0 commit comments