Skip to content
Snippets Groups Projects
Commit 6064c3ae authored by syuilo's avatar syuilo
Browse files

Add semicolons

parent 05862a42
No related branches found
No related tags found
No related merge requests found
......@@ -84,12 +84,12 @@
// Detect the user agent
const ua = navigator.userAgent.toLowerCase();
let isMobile = /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
isMobile = true;
} else if (settings.device.appTypeForce === 'desktop') {
isMobile = false
isMobile = false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment