@@ -76,7 +76,7 @@ Changelog:
76
76
77
77
0.99 (5/12/2012):
78
78
- PR #109 Added support for list-item nodes. FadeIn on tags was omitting the list-style support. (thx @SeanCannon)
79
-
79
+
80
80
0.98 (12/11/2012):
81
81
- Merging pull request #106 thx @gboysko - checking for ownerDocument before using getComputedStyle
82
82
@@ -89,7 +89,7 @@ Changelog:
89
89
0.96 (20/08/2012):
90
90
- Fixes for context, all elements returned as context (issue #84)
91
91
- Reset position with leaveTransforms !== true fixes (issue #93)
92
-
92
+
93
93
94
94
0.95 (20/08/2012):
95
95
- If target opacity == current opacity, pass back to jquery native to get callback firing (#94)
@@ -328,7 +328,7 @@ Changelog:
328
328
// this is a nasty fix, but we check for prop == 'd' to see if we're dealing with SVG, and abort
329
329
if ( prop == "d" ) return ;
330
330
if ( ! _isValidElement ( e ) ) return ;
331
-
331
+
332
332
var parts = rfxnum . exec ( val ) ,
333
333
start = e . css ( prop ) === 'auto' ? 0 : e . css ( prop ) ,
334
334
cleanCSSStart = typeof start == 'string' ? _cleanValue ( start ) : start ,
@@ -609,8 +609,8 @@ Changelog:
609
609
toggle3DByDefault : function ( ) {
610
610
return use3DByDefault = ! use3DByDefault ;
611
611
} ,
612
-
613
-
612
+
613
+
614
614
/**
615
615
@public
616
616
@name toggleDisabledByDefault
@@ -719,8 +719,11 @@ Changelog:
719
719
}
720
720
if ( isTranslatable && typeof selfCSSData . meta !== 'undefined' ) {
721
721
for ( var j = 0 , dir ; ( dir = directions [ j ] ) ; ++ j ) {
722
- restore [ dir ] = selfCSSData . meta [ dir + '_o' ] + valUnit ;
723
- jQuery ( this ) . css ( dir , restore [ dir ] ) ;
722
+ var stashedProperty = selfCSSData . meta [ dir + '_o' ] ;
723
+ if ( stashedProperty ) {
724
+ restore [ dir ] = stashedProperty + valUnit ;
725
+ jQuery ( this ) . css ( dir , restore [ dir ] ) ;
726
+ }
724
727
}
725
728
}
726
729
}
0 commit comments