summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2014-07-03 03:10:31 +0200
committeremkael <emkael@tlen.pl>2014-07-03 03:10:31 +0200
commit41606d3ed246e449e6cc43e1cedc3224fa78898b (patch)
treebc01f00da5952ca328c8ef1b60a47cabdfaf1372
parent9a4705fd2c417127257ecef91d2431e0169fc5a0 (diff)
more easing removed
-rw-r--r--how.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/how.js b/how.js
index 15dcded..5fc4e87 100644
--- a/how.js
+++ b/how.js
@@ -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);
}
}