summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-01-19 09:48:15 -0600
committerDan McGee <dan@archlinux.org>2013-01-19 09:48:15 -0600
commita42a0dc6e400d03609d2d53c0955273b3c05c7ea (patch)
tree0d5298f6e5b58876fd53ecb1af2ed705f12a3927
parent375684ed91dd5499e7a4ea7787e45803e8467e16 (diff)
downloadarchweb-a42a0dc6e400d03609d2d53c0955273b3c05c7ea.tar.gz
archweb-a42a0dc6e400d03609d2d53c0955273b3c05c7ea.zip
Add double click event handler to hide image
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--templates/public/index.html3
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();