@@ -79,7 +79,7 @@ Changelog:
79
79
80
80
0.99 (5/12/2012):
81
81
- PR #109 Added support for list-item nodes. FadeIn on tags was omitting the list-style support. (thx @SeanCannon)
82
-
82
+
83
83
0.98 (12/11/2012):
84
84
- Merging pull request #106 thx @gboysko - checking for ownerDocument before using getComputedStyle
85
85
@@ -92,7 +92,7 @@ Changelog:
92
92
0.96 (20/08/2012):
93
93
- Fixes for context, all elements returned as context (issue #84)
94
94
- Reset position with leaveTransforms !== true fixes (issue #93)
95
-
95
+
96
96
97
97
0.95 (20/08/2012):
98
98
- If target opacity == current opacity, pass back to jquery native to get callback firing (#94)
@@ -346,7 +346,7 @@ Changelog:
346
346
// this is a nasty fix, but we check for prop == 'd' to see if we're dealing with SVG, and abort
347
347
if ( prop == "d" ) return ;
348
348
if ( ! _isValidElement ( e ) ) return ;
349
-
349
+
350
350
var parts = rfxnum . exec ( val ) ,
351
351
start = e . css ( prop ) === 'auto' ? 0 : e . css ( prop ) ,
352
352
cleanCSSStart = typeof start == 'string' ? _cleanValue ( start ) : start ,
@@ -627,8 +627,8 @@ Changelog:
627
627
toggle3DByDefault : function ( ) {
628
628
return use3DByDefault = ! use3DByDefault ;
629
629
} ,
630
-
631
-
630
+
631
+
632
632
/**
633
633
@public
634
634
@name toggleDisabledByDefault
@@ -737,8 +737,11 @@ Changelog:
737
737
}
738
738
if ( isTranslatable && typeof selfCSSData . meta !== 'undefined' ) {
739
739
for ( var j = 0 , dir ; ( dir = directions [ j ] ) ; ++ j ) {
740
- restore [ dir ] = selfCSSData . meta [ dir + '_o' ] + valUnit ;
741
- jQuery ( this ) . css ( dir , restore [ dir ] ) ;
740
+ var stashedProperty = selfCSSData . meta [ dir + '_o' ] ;
741
+ if ( stashedProperty ) {
742
+ restore [ dir ] = stashedProperty + valUnit ;
743
+ jQuery ( this ) . css ( dir , restore [ dir ] ) ;
744
+ }
742
745
}
743
746
}
744
747
}
0 commit comments