mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 01:53:08 +02:00
refactor
This commit is contained in:
parent
269af9d6b9
commit
67d64c9365
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ const ua = navigator.userAgent.toLowerCase();
|
||||||
const isTablet = /ipad/.test(ua) || (/mobile|iphone|android/.test(ua) && window.innerWidth > 700);
|
const isTablet = /ipad/.test(ua) || (/mobile|iphone|android/.test(ua) && window.innerWidth > 700);
|
||||||
const isSmartphone = !isTablet && /mobile|iphone|android/.test(ua);
|
const isSmartphone = !isTablet && /mobile|iphone|android/.test(ua);
|
||||||
|
|
||||||
export const deviceKind = defaultStore.state.overridedDeviceKind ? defaultStore.state.overridedDeviceKind
|
export const deviceKind: 'smartphone' | 'tablet' | 'desktop' = defaultStore.state.overridedDeviceKind ? defaultStore.state.overridedDeviceKind
|
||||||
: isSmartphone ? 'smartphone'
|
: isSmartphone ? 'smartphone'
|
||||||
: isTablet ? 'tablet'
|
: isTablet ? 'tablet'
|
||||||
: 'desktop';
|
: 'desktop';
|
||||||
|
|
Loading…
Reference in a new issue