sp-codes.de/bower_components/jquery/src/css/var/swap.js

27 lines
520 B
JavaScript
Raw Normal View History

2016-10-28 17:33:25 +00:00
define( function() {
2016-11-22 23:07:57 +00:00
"use strict";
2016-10-28 17:33:25 +00:00
// A method for quickly swapping in/out CSS properties to get correct calculations.
return function( elem, options, callback, args ) {
var ret, name,
old = {};
// Remember the old values, and insert the new ones
for ( name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
ret = callback.apply( elem, args || [] );
// Revert the old values
for ( name in options ) {
elem.style[ name ] = old[ name ];
}
return ret;
};
} );