]> source.dussan.org Git - jquery-ui.git/commitdiff
effects.drop: Quick second pass Style Guidance
authorgnarf <gnarf@gnarf.net>
Mon, 7 Mar 2011 05:34:24 +0000 (23:34 -0600)
committergnarf <gnarf@gnarf.net>
Mon, 7 Mar 2011 05:34:24 +0000 (23:34 -0600)
ui/jquery.effects.drop.js

index 221a0bf17a0ca8aaca83c20bd7b214d92e2e45aa..b88a8c4287a8c688af0f7ecb86cec286aaf824bb 100644 (file)
@@ -20,17 +20,18 @@ $.effects.drop = function( o ) {
                        props = [ 'position', 'top', 'bottom', 'left', 'right', 'opacity' ],
                        mode = $.effects.setMode( el, o.mode || 'hide' ),
                        direction = o.direction || 'left',
-                       ref = (direction == 'up' || direction == 'down') ? 'top' : 'left',
-                       motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg',
+                       ref = ( direction == 'up' || direction == 'down' ) ? 'top' : 'left',
+                       motion = ( direction == 'up' || direction == 'left' ) ? 'pos' : 'neg',
                        animation = {
                                opacity: mode == 'show' ? 1 : 0
                        },
                        distance;
-                       
+
                // Adjust
-               $.effects.save(el, props); el.show(); 
-               $.effects.createWrapper(el); 
-               
+               $.effects.save( el, props ); 
+               el.show(); 
+               $.effects.createWrapper( el ); 
+
                distance = o.distance || el[ ref == 'top' ? 'outerHeight': 'outerWidth' ]({ margin: true }) / 2;
 
                if ( mode == 'show' ) {