mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	Add semicolons
This commit is contained in:
		
							parent
							
								
									05862a420f
								
							
						
					
					
						commit
						6064c3ae47
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -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;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue