summaryrefslogtreecommitdiff
path: root/resources/startup.js
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2013-01-18 16:46:04 +0100
committerPierre Schmitz <pierre@archlinux.de>2013-01-18 16:46:04 +0100
commit63601400e476c6cf43d985f3e7b9864681695ed4 (patch)
treef7846203a952e38aaf66989d0a4702779f549962 /resources/startup.js
parent8ff01378c9e0207f9169b81966a51def645b6a51 (diff)
Update to MediaWiki 1.20.2
this update includes: * adjusted Arch Linux skin * updated FluxBBAuthPlugin * patch for https://bugzilla.wikimedia.org/show_bug.cgi?id=44024
Diffstat (limited to 'resources/startup.js')
-rw-r--r--resources/startup.js23
1 files changed, 11 insertions, 12 deletions
diff --git a/resources/startup.js b/resources/startup.js
index 52c320c6..7951af06 100644
--- a/resources/startup.js
+++ b/resources/startup.js
@@ -10,25 +10,24 @@
* generally useful beyond startup
*
* jQuery has minimum requirements of:
- * * Firefox 2.0+
- * * Internet Explorer 6+
- * * Safari 3+
- * * Opera 9+
- * * Chrome 1+
+ * * Internet Explorer 6.0+
+ * * Firefox 3.6+
+ * * Safari 5.0+
+ * * Opera 11+
+ * * Chrome
*/
-var isCompatible = function() {
- // IE < 6
+function isCompatible() {
+ // IE < 6.0
if ( navigator.appVersion.indexOf( 'MSIE' ) !== -1
&& parseFloat( navigator.appVersion.split( 'MSIE' )[1] ) < 6 )
{
return false;
}
- // TODO: Firefox < 2
- // TODO: Safari < 3
- // TODO: Opera < 9
- // TODO: Chrome < 1
+ // @todo FIXME: Firefox < 3.6
+ // @todo FIXME: Safari < 5.0
+ // @todo FIXME: Opera < 11
return true;
-};
+}
/**
* The startUp() function will be generated and added here (at the bottom)
*/