make onload fallback actually work, and comment on piwik brokenness with IE10 or...
[authserver.git] / app / authsystem.js
index 1e5c1b0fbe60d48922c5c79c6231c95385905174..92e3772ad13bdc6723026c21eae000621c616915 100644 (file)
@@ -2,7 +2,11 @@
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 
-window.onload = function() {
+// Call initElements at the earliest possible stage after parsing the document.
+if (window.addEventListener) { window.addEventListener("DOMContentLoaded", initElements, false); }
+else { window.onload = initElements; }
+
+function initElements() {
   var jsWarning = document.getElementById("jswarning");
   if (jsWarning) {
     if (jsWarning.classList) {