summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/drupal.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/drupal.js b/misc/drupal.js
index 1ddde7516..c2ee52332 100644
--- a/misc/drupal.js
+++ b/misc/drupal.js
@@ -16,7 +16,7 @@ function isJsEnabled() {
return document.jsEnabled;
}
-// Global Killswitch
+// Global Killswitch on the <html> element
if (isJsEnabled()) {
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) {
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) {
var oldSubmit = form.onsubmit;