diff options
Diffstat (limited to 'ui/effects.explode.js')
-rw-r--r-- | ui/effects.explode.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/effects.explode.js b/ui/effects.explode.js index 4c943ba63..0578ec51b 100644 --- a/ui/effects.explode.js +++ b/ui/effects.explode.js @@ -43,7 +43,7 @@ $.effects.explode = function(o) { top: -i*(height/rows) }) .parent() - .addClass('effects-explode') + .addClass('ui-effects-explode') .css({ position: 'absolute', overflow: 'hidden', @@ -67,7 +67,7 @@ $.effects.explode = function(o) { if(o.callback) o.callback.apply(el[0]); // Callback el.dequeue(); - $('.effects-explode').remove(); + $('div.ui-effects-explode').remove(); }, o.duration || 500); |