first commit

This commit is contained in:
2019-08-13 23:32:13 +02:00
commit 89ae9f3a3a
141 changed files with 168907 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*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);