- Patch #39725 by Goba: improvements to the code comments.
parent
7bdd8b3718
commit
eaad4aa2f7
|
|
@ -16,7 +16,7 @@ function isJsEnabled() {
|
||||||
return document.jsEnabled;
|
return document.jsEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Global Killswitch
|
// Global Killswitch on the <html> element
|
||||||
if (isJsEnabled()) {
|
if (isJsEnabled()) {
|
||||||
document.documentElement.className = 'js';
|
document.documentElement.className = 'js';
|
||||||
}
|
}
|
||||||
|
|
@ -38,7 +38,7 @@ if (typeof XMLHttpRequest == 'undefined') {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an HTTP request and sends the response to the callback function
|
* Creates an HTTP GET request and sends the response to the callback function
|
||||||
*/
|
*/
|
||||||
function HTTPGet(uri, callbackFunction, callbackParameter) {
|
function HTTPGet(uri, callbackFunction, callbackParameter) {
|
||||||
var xmlHttp = new XMLHttpRequest();
|
var xmlHttp = new XMLHttpRequest();
|
||||||
|
|
@ -169,7 +169,7 @@ function addLoadEvent(func) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a function to the window onload event
|
* Adds a function to a given form's submit event
|
||||||
*/
|
*/
|
||||||
function addSubmitEvent(form, func) {
|
function addSubmitEvent(form, func) {
|
||||||
var oldSubmit = form.onsubmit;
|
var oldSubmit = form.onsubmit;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue