summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-06-20 23:30:06 +0300
committerYuval Adam <yuval@y3xz.com>2015-06-20 23:30:06 +0300
commite09b02ea1fe773f0ebf4059792f89db9ae743fa8 (patch)
treeeb091dac41c7ddcd381f9fbc81bdbac046088532 /client
parentd711f27486f0dddf53e624b635efee8591c18c30 (diff)
Fix step 5/6
Diffstat (limited to 'client')
-rw-r--r--client/button.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/button.js b/client/button.js
index 5e1020f..c739001 100644
--- a/client/button.js
+++ b/client/button.js
@@ -72,6 +72,8 @@ function animate() {
delay += 2000;
_.delay(function() {
+ $('li#step4').removeClass('active');
+ $('li#step5').addClass('active');
$('div.dominants').hide();
$('div.photos').show();
_.each(Session.get('photos'), function(x, i) {
@@ -85,8 +87,8 @@ function animate() {
delay += 2000;
_.delay(function() {
- $('li#step4').removeClass('active');
- $('li#step5').addClass('active');
+ $('li#step5').removeClass('active');
+ $('li#step6').addClass('active');
$('div.photos').hide();
$('div.final').show()