updated npm modules
This commit is contained in:
10
node_modules/jquery/src/effects/Tween.js
generated
vendored
10
node_modules/jquery/src/effects/Tween.js
generated
vendored
@@ -1,7 +1,9 @@
|
||||
define( [
|
||||
"../core",
|
||||
"../css/finalPropName",
|
||||
|
||||
"../css"
|
||||
], function( jQuery ) {
|
||||
], function( jQuery, finalPropName ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
@@ -84,9 +86,9 @@ Tween.propHooks = {
|
||||
// Use .style if available and use plain properties where available.
|
||||
if ( jQuery.fx.step[ tween.prop ] ) {
|
||||
jQuery.fx.step[ tween.prop ]( tween );
|
||||
} else if ( tween.elem.nodeType === 1 &&
|
||||
( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
|
||||
jQuery.cssHooks[ tween.prop ] ) ) {
|
||||
} else if ( tween.elem.nodeType === 1 && (
|
||||
jQuery.cssHooks[ tween.prop ] ||
|
||||
tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
|
||||
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
|
||||
} else {
|
||||
tween.elem[ tween.prop ] = tween.now;
|
||||
|
||||
Reference in New Issue
Block a user