mirror of
https://github.com/jquery/jquery.git
synced 2026-02-01 09:44:56 -05:00
Tests: Fix merge conflict
Introduced in 6b10f9d7e9 originally.
Had a rebase conflict that I fixed but forgot to ⌘-s. ☹
This commit is contained in:
3
src/effects.js
vendored
3
src/effects.js
vendored
@@ -382,8 +382,6 @@ function Animation( elem, properties, options ) {
|
||||
}
|
||||
|
||||
jQuery.Animation = jQuery.extend( Animation, {
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
|
||||
tweeners: {
|
||||
"*": [ function( prop, value ) {
|
||||
@@ -393,7 +391,6 @@ jQuery.Animation = jQuery.extend( Animation, {
|
||||
} ]
|
||||
},
|
||||
|
||||
>>>>>>> b3b2d6c... Effects: Adding unit tests for jQuery.Animation
|
||||
tweener: function( props, callback ) {
|
||||
if ( jQuery.isFunction( props ) ) {
|
||||
callback = props;
|
||||
|
||||
4
test/unit/effects.js
vendored
4
test/unit/effects.js
vendored
@@ -17,12 +17,8 @@ module("effects", {
|
||||
jQuery.fx.interval = 10;
|
||||
},
|
||||
teardown: function() {
|
||||
<<<<<<< HEAD
|
||||
this.clock.restore();
|
||||
=======
|
||||
this.sandbox.restore();
|
||||
jQuery.now = Date.now;
|
||||
>>>>>>> cdaed15... Effects: Add tests for jQuery.Tween
|
||||
jQuery.fx.stop();
|
||||
jQuery.fx.interval = this._oldInterval;
|
||||
window.requestAnimationFrame = oldRaf;
|
||||
|
||||
Reference in New Issue
Block a user