summaryrefslogtreecommitdiffstats
path: root/js/vendor/jquery/src/css/var/swap.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/jquery/src/css/var/swap.js')
-rw-r--r--js/vendor/jquery/src/css/var/swap.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/vendor/jquery/src/css/var/swap.js b/js/vendor/jquery/src/css/var/swap.js
new file mode 100644
index 000000000..b6d3b679f
--- /dev/null
+++ b/js/vendor/jquery/src/css/var/swap.js
@@ -0,0 +1,24 @@
+define( function() {
+
+// 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;
+};
+
+} );