summaryrefslogtreecommitdiff
path: root/javascript/developer-functions.js
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-02-22 17:28:09 +0100
committerAlib <aliboba@free.fr>2010-02-22 17:28:09 +0100
commit5cf654e0f2859c2d2a48be749fe34257615779fe (patch)
treebd90e13badbd72aa1b7ef7b0627732446d711ddf /javascript/developer-functions.js
parent2c73a0dfa88223aa1a54e3f985731a4563df2097 (diff)
downloadistreamdev-5cf654e0f2859c2d2a48be749fe34257615779fe.tar.gz
istreamdev-5cf654e0f2859c2d2a48be749fe34257615779fe.tar.bz2
moved all javascript functions to function.js
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();
-};
-