You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
384 B
16 lines
384 B
/*global Modernizr MobileDetect*/
|
|
|
|
(function (window, Modernizr) {
|
|
'use strict';
|
|
var md = new MobileDetect(navigator.userAgent),
|
|
grade = md.mobileGrade();
|
|
Modernizr.addTest({
|
|
mobile: !!md.mobile(),
|
|
phone: !!md.phone(),
|
|
tablet: !!md.tablet(),
|
|
mobilegradea: grade === 'A'
|
|
});
|
|
window.mobileDetect = md;
|
|
})(window, Modernizr);
|
|
|