diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-12-10 21:44:39 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-12-10 21:44:39 +0100 |
commit | ff0509a85680fb8d70a571d0ac85dc0eef86aa64 (patch) | |
tree | a7ead2e928f7d66d18d9d8998d1704ca09379955 | |
parent | 00540a38be97858e71163f53dddf8dee53185b1d (diff) | |
download | rpg-ff0509a85680fb8d70a571d0ac85dc0eef86aa64.tar.gz rpg-ff0509a85680fb8d70a571d0ac85dc0eef86aa64.tar.bz2 |
JS fixes
darcs-hash:20051210204439-7ad00-602f2ab029f37fa3886e826329d1e534811fd1f1.gz
-rw-r--r-- | lib/scripts/events.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/scripts/events.js b/lib/scripts/events.js index fb65b1bd7..1002633ce 100644 --- a/lib/scripts/events.js +++ b/lib/scripts/events.js @@ -79,7 +79,7 @@ window.fireoninit = function() { if (typeof window.oninit == 'function') {
window.oninit();
}
-}
+};
/**
* This is a pseudo Event that will be fired by the above function
@@ -88,8 +88,7 @@ window.fireoninit = function() { *
* @author Andreas Gohr
*/
-window.oninit = function() {
-}
+window.oninit = function(){};
/**
* Bind a function to the window.init pseudo event
|