X-Git-Url: https://git-public.kairo.at/?p=authserver.git;a=blobdiff_plain;f=app%2Fauthsystem.js;h=6ab6a14e9564e34ea772dd9030ec1886b096de78;hp=1e5c1b0fbe60d48922c5c79c6231c95385905174;hb=2b9aa8f3c5aeb5d3fa414a985ad14b351a12cfcd;hpb=9cab985cf8d73f719cd7efc2838ce2e107b45b21 diff --git a/app/authsystem.js b/app/authsystem.js index 1e5c1b0..6ab6a14 100644 --- a/app/authsystem.js +++ b/app/authsystem.js @@ -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) {