diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-06 19:54:38 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-06 19:54:38 +0000 |
commit | 17d55655b91980c689422674acc5c3c16d36f149 (patch) | |
tree | 77cbe4f76ba2b239efad3b5ca48dd5d5a7ca9116 | |
parent | 4ff130a99523eb4d7131125c9acec6d90c71f721 (diff) | |
download | jquery-ui-17d55655b91980c689422674acc5c3c16d36f149.tar.gz jquery-ui-17d55655b91980c689422674acc5c3c16d36f149.zip |
effects - fixed two (minor) missed renames from 'ec' (enchant) to 'effects'
-rw-r--r-- | ui/source/effects.core.js | 2 | ||||
-rw-r--r-- | ui/source/effects.explode.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ui/source/effects.core.js b/ui/source/effects.core.js index a7b706a55..6940eca55 100644 --- a/ui/source/effects.core.js +++ b/ui/source/effects.core.js @@ -1,6 +1,6 @@ ;(function($) { -$.effects = $.effects || {}; //Add the 'ec' scope +$.effects = $.effects || {}; //Add the 'effects' scope $.extend($.effects, { save: function(el, set) { 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); |