Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ticket #7105: Improving internal effects api #146

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
effects.*: couple of quick changes lost in my cherrypicking
  • Loading branch information
gnarf committed Mar 8, 2011
commit d0009afbcfd5ad0040015235ddcf5d88c0e98042
2 changes: 1 addition & 1 deletion ui/jquery.effects.shake.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $.effects.effect.shake = function( o ) {

return this.queue( function() {

var el = $.effect.$( this ),
var el = $.effects.$( this ),
props = [ 'position', 'top', 'bottom', 'left', 'right' ],
mode = el.setMode( o.mode || 'effect' ),
direction = o.direction || 'left',
Expand Down
2 changes: 1 addition & 1 deletion ui/jquery.effects.slide.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $.effects.effect.slide = function( o ) {
return this.queue( function() {

// Create element
var el = $( this ),
var el = $.effects.$( this ),
props = ['position','top','bottom','left','right'],
mode = el.setMode( o.mode || 'show' ),
direction = o.direction || 'left',
Expand Down