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