mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	fix device detection in setup
This commit is contained in:
		| @@ -151,11 +151,15 @@ function bindShortcut(keyboardShortcut, handler) { | ||||
| } | ||||
|  | ||||
| function isMobile() { | ||||
|     return window.device === "mobile"; | ||||
|     return window.device === "mobile" | ||||
|         // window.device is not available in setup | ||||
|         || (!window.device && /Mobi/.test(navigator.userAgent)); | ||||
| } | ||||
|  | ||||
| function isDesktop() { | ||||
|     return window.device === "desktop"; | ||||
|     return window.device === "desktop" | ||||
|         // window.device is not available in setup | ||||
|         || (!window.device && !/Mobi/.test(navigator.userAgent)); | ||||
| } | ||||
|  | ||||
| function setCookie(name, value) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user