mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
effects - fixed two (minor) missed renames from 'ec' (enchant) to 'effects'
This commit is contained in:
parent
4ff130a995
commit
17d55655b9
@ -1,6 +1,6 @@
|
|||||||
;(function($) {
|
;(function($) {
|
||||||
|
|
||||||
$.effects = $.effects || {}; //Add the 'ec' scope
|
$.effects = $.effects || {}; //Add the 'effects' scope
|
||||||
|
|
||||||
$.extend($.effects, {
|
$.extend($.effects, {
|
||||||
save: function(el, set) {
|
save: function(el, set) {
|
||||||
|
@ -31,7 +31,7 @@ $.effects.explode = function(o) {
|
|||||||
top: -i*(height/rows)
|
top: -i*(height/rows)
|
||||||
})
|
})
|
||||||
.parent()
|
.parent()
|
||||||
.addClass('ec-explode')
|
.addClass('effects-explode')
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
@ -55,7 +55,7 @@ $.effects.explode = function(o) {
|
|||||||
if(o.callback) o.callback.apply(el[0]); // Callback
|
if(o.callback) o.callback.apply(el[0]); // Callback
|
||||||
el.dequeue();
|
el.dequeue();
|
||||||
|
|
||||||
$('.ec-explode').remove();
|
$('.effects-explode').remove();
|
||||||
|
|
||||||
}, o.duration || 500);
|
}, o.duration || 500);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user