diff options
author | emkael <emkael@tlen.pl> | 2014-07-03 03:08:55 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2014-07-03 03:08:55 +0200 |
commit | 9a4705fd2c417127257ecef91d2431e0169fc5a0 (patch) | |
tree | 49479233fa3963325d860efea38d0282b31c2024 /how.js | |
parent | fcb00fa739b1e13b6b5b9db22de1b319738a691d (diff) |
easing removed
Diffstat (limited to 'how.js')
-rw-r--r-- | how.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -140,11 +140,11 @@ var Pair = function(startingPosition, number, movement) { if (position) { that.players[i] = position; var pos = that.movement.tables.getPosition(position, that.size); - that.containers[i].animate(pos, 1000, 'easeInOutBack'); + that.containers[i].animate(pos, 1000); position = position.replace('N', 'S').replace('E', 'W'); } else { - that.containers[i].animate({left: 0, top: 0}, 1000, 'easeInOutBack'); + that.containers[i].animate({left: 0, top: 0}, 1000); } } } |