* (bug 27595) sha1 search of list=filearchive does not work
[lhc/web/wiklou.git] / resources / startup.js
index 1e0ca03..52c320c 100644 (file)
@@ -1,14 +1,14 @@
 /**
- * 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 
+ * 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 ancient of browsers, so be very careful when editing.
  */
 /**
  * Returns false when run in a black-listed browser
- * 
- * This function will be deleted after it's used, so do not expand it to be 
+ *
+ * This function will be deleted after it's used, so do not expand it to be
  * generally useful beyond startup
- * 
+ *
  * jQuery has minimum requirements of:
  * * Firefox 2.0+
  * * Internet Explorer 6+
@@ -18,7 +18,7 @@
  */
 var isCompatible = function() {
        // IE < 6
-       if ( navigator.appVersion.indexOf( 'MSIE' ) !== -1 
+       if ( navigator.appVersion.indexOf( 'MSIE' ) !== -1
                && parseFloat( navigator.appVersion.split( 'MSIE' )[1] ) < 6 )
        {
                return false;