summaryrefslogtreecommitdiffstats
path: root/sitestatic/homepage.js
diff options
context:
space:
mode:
authorjelle van der Waa <jelle@vdwaa.nl>2018-01-22 18:41:25 +0100
committerAngel Velásquez <angvp@archlinux.org>2018-01-22 12:41:25 -0500
commitc79dc7dcf4a13e381a59a63c57590f2272aa0869 (patch)
treec8aed1fd5a3762af7bfb91ffa42a84259d3d2225 /sitestatic/homepage.js
parent1e65142aeab9e24b8968f3915ef930386f04fed3 (diff)
downloadarchweb-c79dc7dcf4a13e381a59a63c57590f2272aa0869.tar.gz
archweb-c79dc7dcf4a13e381a59a63c57590f2272aa0869.zip
Remove Konami code functionality (#77)
Remove the easteregg on the home page which shows a tux when a user enters the Konami code. Which reduces maintenance of a non-critical component.
Diffstat (limited to 'sitestatic/homepage.js')
-rw-r--r--sitestatic/homepage.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/sitestatic/homepage.js b/sitestatic/homepage.js
index 48dab93f..3ce1c8fd 100644
--- a/sitestatic/homepage.js
+++ b/sitestatic/homepage.js
@@ -28,15 +28,3 @@ function setupTypeahead() {
}
});
}
-
-function setupKonami(image_src) {
- var konami = new Konami(function() {
- $('#konami').html('<img src="' + image_src + '" alt=""/>');
- setTimeout(function() {
- $('#konami').fadeIn(500);
- }, 500);
- $('#konami').click(function() {
- $('#konami').fadeOut(500);
- });
- });
-}