https://bugzilla.wikimedia.org/show_bug.cgi?id=48445

--- Comment #1 from MWJames <jamesin.hongkon...@gmail.com> ---
This has been eliminated because loading an additional library that tries to
emulate functionality that is not natively supported by a browser has all sorts
of draw backs but if you really need to support IE7, you can try something
like:

var p = $.client.profile();

if ( p.name === 'msie' && p.versionNumber < 9 ) {
    mw.loader.using( 'ext.jquery.jqplot.excanvas', fn() );
} else {
    fn();
}

For an example how excanvas can be loaded conditionally, see
ext.srf.tagcloud.sphere.js (but since the excanvas has a major performance
drawback this will be deleted in SRF 1.9 as well).

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to