diff options
author | emkael <emkael@tlen.pl> | 2014-07-03 03:10:31 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2014-07-03 03:10:31 +0200 |
commit | 41606d3ed246e449e6cc43e1cedc3224fa78898b (patch) | |
tree | bc01f00da5952ca328c8ef1b60a47cabdfaf1372 | |
parent | 9a4705fd2c417127257ecef91d2431e0169fc5a0 (diff) |
more easing removed
-rw-r--r-- | how.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -152,7 +152,7 @@ var Pair = function(startingPosition, number, movement) { that.display = function() { for (var i = 0; i < 2; i++) { movement.viewport.container.append(that.containers[i]); - that.containers[i].animate(that.movement.tables.getPosition(that.players[i], that.size), 1000, 'easeInOutBack'); + that.containers[i].animate(that.movement.tables.getPosition(that.players[i], that.size), 1000 } } } @@ -191,10 +191,10 @@ var Set = function(startingPosition, movement, number) { that.moveTo = function(position) { that.position = position; if (position) { - that.container.animate(that.getPosition(position), 1000, 'easeInOutBack'); + that.container.animate(that.getPosition(position), 1000); } else { - that.container.animate({left: 0, top: that.movement.viewport.height - that.size}, 1000, 'easeInOutBack'); + that.container.animate({left: 0, top: that.movement.viewport.height - that.size}, 1000); } } |