aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.blind.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/jquery.effects.blind.js')
-rw-r--r--ui/jquery.effects.blind.js4
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;