From eaad4aa2f79cd32ce2c79061d9a23fb69cc5d8eb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 2 Dec 2005 21:28:18 +0000 Subject: - Patch #39725 by Goba: improvements to the code comments. --- misc/drupal.js | 6 +++--- 1 file 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 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; -- cgit v1.2.3