1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00
RIOT/doc/doxygen/src/js/doxy-jquery.js
2017-04-13 16:41:52 +02:00

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;
}
})();