Bug Tracker

Ticket #1751: 1751.diff

File 1751.diff, 0.6 kB (added by davidserduke, 1 year ago)
  • src/fx.js

     
    6666    }, 
    6767     
    6868    animate: function( prop, speed, easing, callback ) { 
    69         var opt = jQuery.speed(speed, easing, callback); 
     69        var optall = jQuery.speed(speed, easing, callback); 
    7070 
    71         return this[ opt.queue === false ? "each" : "queue" ](function(){ 
    72             opt = jQuery.extend({}, opt); 
     71        return this[ optall.queue === false ? "each" : "queue" ](function(){ 
     72            var opt = jQuery.extend({}, optall); 
    7373            var hidden = jQuery(this).is(":hidden"), self = this; 
    7474             
    7575            for ( var p in prop ) {