]> source.dussan.org Git - jquery-ui.git/commitdiff
effects.clip: Reuse a var instead of calculate again
authorgnarf <gnarf@gnarf.net>
Sun, 6 Mar 2011 11:25:38 +0000 (05:25 -0600)
committergnarf <gnarf@gnarf.net>
Sun, 6 Mar 2011 11:25:38 +0000 (05:25 -0600)
ui/jquery.effects.clip.js

index 643e436b120c8d941ba0239fafe637e8c51e9af7..8cf91da57afae7a98478464b87d24293966fce12 100644 (file)
@@ -36,7 +36,7 @@ $.effects.clip = function( o ) {
                        overflow: 'hidden' 
                });
                animate = ( el[0].tagName == 'IMG' ) ? wrapper : el;
-               distance = ( direction == 'vertical' ) ? animate.height() : animate.width();
+               distance = animate[ ref.size ]();
 
                // Shift
                if ( mode == 'show' ) {