Code coverage report for src\effects.js

Statements: 100% (6 / 6)      Branches: 50% (1 / 2)      Functions: 100% (1 / 1)      Lines: 100% (6 / 6)      Ignored: none     

All files » src/ » effects.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191   1 1 1           1           1    
var oldTweenRun = jQuery.Tween.prototype.run;
 
jQuery.Tween.prototype.run = function( percent ) {
	Eif ( jQuery.easing[ this.easing ].length > 1 ) {
		migrateWarn(
			"easing function " +
			"\"jQuery.easing." + this.easing.toString() +
			"\" should use only first argument"
		);
 
		jQuery.easing[ this.easing ] = jQuery.easing[ this.easing ].bind(
			jQuery.easing,
			percent, this.options.duration * percent, 0, 1, this.options.duration
		);
	}
 
	oldTweenRun.apply( this, arguments );
};