From a42a0dc6e400d03609d2d53c0955273b3c05c7ea Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 19 Jan 2013 09:48:15 -0600 Subject: Add double click event handler to hide image Signed-off-by: Dan McGee --- templates/public/index.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'templates/public/index.html') diff --git a/templates/public/index.html b/templates/public/index.html index abf16af..6fc9043 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -240,6 +240,9 @@ $(document).ready(function() { setTimeout(function() { $('#konami').fadeIn(500); }, 500); + $('#konami').click(function() { + $('#konami').fadeOut(500); + }); }; konami.iphone.code = konami.code; konami.load(); -- cgit v1.2.3-24-g4f1b