summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2014-07-03 03:08:55 +0200
committeremkael <emkael@tlen.pl>2014-07-03 03:08:55 +0200
commit9a4705fd2c417127257ecef91d2431e0169fc5a0 (patch)
tree49479233fa3963325d860efea38d0282b31c2024
parentfcb00fa739b1e13b6b5b9db22de1b319738a691d (diff)
easing removed
-rw-r--r--how.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/how.js b/how.js
index 7325bb4..15dcded 100644
--- a/how.js
+++ b/how.js
@@ -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);
}
}
}