ui-device.js 524 B

123456789101112131415
  1. (function ($) {
  2. "use strict";
  3. // Checks for ie
  4. if ( !!navigator.userAgent.match(/MSIE/i) || !!navigator.userAgent.match(/Trident.*rv:11\./) ){
  5. $('body').addClass('ie');
  6. }
  7. // Checks for iOs, Android, Blackberry, Opera Mini, and Windows mobile devices
  8. var ua = window['navigator']['userAgent'] || window['navigator']['vendor'] || window['opera'];
  9. if( (/iPhone|iPod|iPad|Silk|Android|BlackBerry|Opera Mini|IEMobile/).test(ua) ){
  10. $('body').addClass('smart');
  11. }
  12. })(jQuery);