Use addEventListener instead. embed
authorOlof-Joachim Frahm <olof@macrolet.net>
Tue, 15 Oct 2013 20:41:14 +0000 (22:41 +0200)
committerOlof-Joachim Frahm <olof@macrolet.net>
Tue, 15 Oct 2013 20:42:45 +0000 (22:42 +0200)
src/sequel.js

index ef429d4..f1c389c 100644 (file)
@@ -1,13 +1,12 @@
 /* execute all script tags with type of x-common-lisp */
-window.onload = (function () {
+window.addEventListener('load', (function () {
   var scripts = document.scripts;
 
   for (var i = 0; i < scripts.length; ++i) {
     var script = scripts[i];
 
     /* TODO: what about errors? */
-    if (script.type == "text/x-common-lisp") {
+    if (script.type == "text/x-common-lisp")
       lisp.evalString(script.text);
-    }
   }
-});
+}));