effects - fixed two (minor) missed renames from 'ec' (enchant) to 'effects'

This commit is contained in:
Richard Worth 2008-06-06 19:54:38 +00:00
parent 4ff130a995
commit 17d55655b9
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;(function($) {
$.effects = $.effects || {}; //Add the 'ec' scope
$.effects = $.effects || {}; //Add the 'effects' scope
$.extend($.effects, {
save: function(el, set) {

View File

@ -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);