diff options
author | Alib <aliboba@free.fr> | 2010-02-22 17:28:09 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-02-22 17:28:09 +0100 |
commit | 5cf654e0f2859c2d2a48be749fe34257615779fe (patch) | |
tree | bd90e13badbd72aa1b7ef7b0627732446d711ddf /javascript/developer-functions.js | |
parent | 2c73a0dfa88223aa1a54e3f985731a4563df2097 (diff) | |
download | istreamdev-5cf654e0f2859c2d2a48be749fe34257615779fe.tar.gz istreamdev-5cf654e0f2859c2d2a48be749fe34257615779fe.tar.bz2 |
moved all javascript functions to function.js
Diffstat (limited to 'javascript/developer-functions.js')
-rwxr-xr-x | javascript/developer-functions.js | 24 |
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();
-};
-
|