X-Git-Url: https://git-public.kairo.at/?p=authserver.git;a=blobdiff_plain;f=app%2Fauthsystem.js;fp=app%2Fauthsystem.js;h=6ab6a14e9564e34ea772dd9030ec1886b096de78;hp=1e5c1b0fbe60d48922c5c79c6231c95385905174;hb=7be13777491767920a76f854c8e8160fe04c4851;hpb=4e765d998029d80d9fd78ce08671cee3f985438d 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) {