summaryrefslogtreecommitdiff
path: root/javascript/developer-functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/developer-functions.js')
-rwxr-xr-xjavascript/developer-functions.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/javascript/developer-functions.js b/javascript/developer-functions.js
deleted file mode 100755
index 244c900..0000000
--- a/javascript/developer-functions.js
+++ /dev/null
@@ -1,24 +0,0 @@
-function fullscreen() {
- var a = document.getElementsByTagName("a");
- for (var i = 0; i < a.length;i++) {
- if (a[i].className.match("noeffect")) {
- }
- else {
- a[i].onclick = function () {
- window.location = this.getAttribute("href");
- return false;
- };
- }
- }
-}
-
-function hideURLbar() {
- window.scrollTo(0, 0.9);
-}
-
-
-window.onload = function () {
- fullscreen();
- hideURLbar();
-};
-