mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-27 23:41:18 +01:00
15 lines
410 B
JavaScript
15 lines
410 B
JavaScript
/*
|
|
* Source: http://stackoverflow.com/a/16972927
|
|
*/
|
|
/* hack to cope with doxygens usage of an older jQuery version, while bootstrap
|
|
* requires a newer one */
|
|
jQuery.browser = {};
|
|
(function () {
|
|
jQuery.browser.msie = false;
|
|
jQuery.browser.version = 0;
|
|
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
|
|
jQuery.browser.msie = true;
|
|
jQuery.browser.version = RegExp.$1;
|
|
}
|
|
})();
|