diff options
author | Dan McGee <dan@archlinux.org> | 2013-01-19 09:48:15 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-01-19 09:48:15 -0600 |
commit | a42a0dc6e400d03609d2d53c0955273b3c05c7ea (patch) | |
tree | 0d5298f6e5b58876fd53ecb1af2ed705f12a3927 /templates/public/index.html | |
parent | 375684ed91dd5499e7a4ea7787e45803e8467e16 (diff) |
Add double click event handler to hide image
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/index.html')
-rw-r--r-- | templates/public/index.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/public/index.html b/templates/public/index.html index abf16afd..6fc90436 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(); |