add a comment for debugging - we may want to add an insecure local domain name for...
[authserver.git] / authsystem.js
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 window.onload = function() {
6   var jsWarning = document.getElementById("jswarning");
7   if (jsWarning) {
8     if (jsWarning.classList) {
9       jsWarning.classList.add("hidden");
10     }
11     else {
12       // IE9 or older (sigh)
13       jsWarning.setAttribute("class", "warn hidden");
14     }
15   }
16   var loginForm = document.getElementById("loginform");
17   if (loginForm) {
18     if (loginForm.classList) {
19       loginForm.classList.remove("hidden");
20     }
21     else {
22       // IE9 or older (sigh)
23       loginForm.setAttribute("class", "loginarea");
24     }
25   }
26 }