2 * This script provides a function which is run to evaluate whether or not to
3 * continue loading the jquery and mediawiki modules. This code should work on
4 * even the most ancient of browsers, so be very careful when editing.
7 * Returns false when run in a black-listed browser
9 * This function will be deleted after it's used, so do not expand it to be
10 * generally useful beyond startup
12 * jQuery has minimum requirements of:
13 * * Internet Explorer 6.0+
19 function isCompatible() {
21 if ( navigator.appVersion.indexOf( 'MSIE' ) !== -1
22 && parseFloat( navigator.appVersion.split( 'MSIE' )[1] ) < 6 )
26 // @todo FIXME: Firefox < 3.6
27 // @todo FIXME: Safari < 5.0
28 // @todo FIXME: Opera < 11
32 * The startUp() function will be generated and added here (at the bottom)