Introducing mediaWiki.language, and mediaWiki.message which are modeled after their...
[lhc/web/wiklou.git] / resources / startup.js
index 572ef69..4ae8791 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * This script provides a function which is run to evaluate whether or not to continue loading the jquery and mediawiki
- * modules. This code should work on even the most anchient of browsers, so be very careful when editing.
+ * modules. This code should work on even the most ancient of browsers, so be very careful when editing.
  */
 /**
  * Returns false when run in a black-listed browser
@@ -14,7 +14,7 @@
  * * Opera 9+
  * * Chrome 1+
  */
-window.isCompatible = function() {
+var isCompatible = function() {
        // IE < 6
        if ( navigator.appVersion.indexOf( 'MSIE' ) !== -1 && parseFloat( navigator.appVersion.split( 'MSIE' )[1] ) < 6 ) {
                return false;