diff options
author | gnarf <gnarf@gnarf.net> | 2011-03-06 15:24:24 -0600 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-03-06 15:24:24 -0600 |
commit | bcb8f7ed9aee8ecb0ad5144204f6c7083949b3a7 (patch) | |
tree | f73ea5048f9f912c202493b323ae0db7d5f58a77 /ui/jquery.effects.blind.js | |
parent | 61cf83408136514282523179e4ce93d3b88638da (diff) | |
download | jquery-ui-bcb8f7ed9aee8ecb0ad5144204f6c7083949b3a7.tar.gz jquery-ui-bcb8f7ed9aee8ecb0ad5144204f6c7083949b3a7.zip |
effects.*: More Style Guidance
Diffstat (limited to 'ui/jquery.effects.blind.js')
-rw-r--r-- | ui/jquery.effects.blind.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.effects.blind.js b/ui/jquery.effects.blind.js index 0bf5b0b71..814649a04 100644 --- a/ui/jquery.effects.blind.js +++ b/ui/jquery.effects.blind.js @@ -16,11 +16,11 @@ $.effects.blind = function(o) { return this.queue(function() { // Create element - var el = $(this), + var el = $( this ), props = ['position','top','bottom','left','right'], mode = $.effects.setMode( el, o.mode || 'hide' ), direction = o.direction || 'vertical', - ref = (direction == 'vertical') ? 'height' : 'width', + ref = ( direction == 'vertical' ) ? 'height' : 'width', animation = {}, wrapper, distance; |