()
| 9767 | var empty = jQuery.isEmptyObject( prop ), |
| 9768 | optall = jQuery.speed( speed, easing, callback ), |
| 9769 | doAnimation = function() { |
| 9770 | // Operate on a copy of prop so per-property easing won't be lost |
| 9771 | var anim = Animation( this, jQuery.extend( {}, prop ), optall ); |
| 9772 | |
| 9773 | // Empty animations resolve immediately |
| 9774 | if ( empty ) { |
| 9775 | anim.stop( true ); |
| 9776 | } |
| 9777 | }; |
| 9778 | |
| 9779 | return empty || optall.queue === false ? |
| 9780 | this.each( doAnimation ) : |
nothing calls this directly
no test coverage detected
searching dependent graphs…