summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-06-29 13:05:16 +0300
committerYuval Adam <yuval@y3xz.com>2015-06-29 13:05:16 +0300
commit183a0684bebf4e3f0fc2aacfc738a9d8e00f2181 (patch)
treeab941b09272c1ab82f5d01749e4d19cc15e6a847
parent6e73d7d8f03056a674908801500a5f842aed6014 (diff)
Hide about link during processing
-rw-r--r--client/button.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/button.js b/client/button.js
index 3b7e936..3b3a1c5 100644
--- a/client/button.js
+++ b/client/button.js
@@ -112,6 +112,7 @@ function animate2() {
$('h2.title').html('Done!<div class="sec">This is your icon!</div>');
$('div.final div.final-dominants').hide();
$('div.final div.share').show();
+ $('div.about-link').show();
}, delay + 2000);
@@ -157,6 +158,7 @@ Template.dates.events({
}
},
'submit form.dates': function (event) {
+ $('div.about-link').hide();
Router.go('photos');
_.delay(animate, 2000);
return false;