Blame view

RIOT/doc/doxygen/src/js/doxy-jquery.js 410 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   * 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;
      }
  })();