From 183a0684bebf4e3f0fc2aacfc738a9d8e00f2181 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Mon, 29 Jun 2015 13:05:16 +0300 Subject: Hide about link during processing --- client/button.js | 2 ++ 1 file changed, 2 insertions(+) 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!
This is your icon!
'); $('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; -- cgit v1.3.1