This commit is contained in:
parent
788edd3622
commit
22c4842154
1 changed files with 8 additions and 3 deletions
|
@ -84,9 +84,14 @@
|
|||
|
||||
// Detect the user agent
|
||||
const ua = navigator.userAgent.toLowerCase();
|
||||
const isMobile = settings.device.appTypeForce === 'mobile' ||
|
||||
(settings.device.appTypeForce !== 'desktop'
|
||||
&& (/mobile|iphone|ipad|android/.test(ua) || window.innerWidth < 576));
|
||||
let isMobile = /mobile|iphone|ipad|android/.test(ua) || window.innerWidth < 576
|
||||
if (settings && settings.device.appTypeForce) {
|
||||
if (settings.device.appTypeForce === 'mobile') {
|
||||
isMobile = true
|
||||
} else if (settings.device.appTypeForce === 'desktop') {
|
||||
isMobile = false
|
||||
}
|
||||
}
|
||||
|
||||
// Get the <head> element
|
||||
const head = document.getElementsByTagName('head')[0];
|
||||
|
|
Loading…
Reference in a new issue