summaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js')
-rw-r--r--public/js/code.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/public/js/code.js b/public/js/code.js
deleted file mode 100644
index fd2d33a..0000000
--- a/public/js/code.js
+++ /dev/null
@@ -1,20 +0,0 @@
-// credit: www.jwz.org
-setTimeout(function(){},0);
-var p=0, q=-16, offset=50;
-
-function a(){
- if(window.setTimeout&&document.getElementsByTagName){
- var o=16;
-
- var b=document.getElementsByTagName("pre")[0];
- b.style.top=(p-o-offset)+"pt";
- var o=-(p-o)+"pt";
- p+=q;
-
- if(p<-2<<10||p>=0) q=-q;
-
- window.setTimeout(this.a,2<<6);
- }
-}
-a();
-window.onload = a();