mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-26 19:14:12 +00:00 
			
		
		
		
	Refactoring
This commit is contained in:
		
							parent
							
								
									7c7e824070
								
							
						
					
					
						commit
						88041dbd94
					
				
					 1 changed files with 7 additions and 1 deletions
				
			
		|  | @ -37,7 +37,13 @@ const [head] = document.getElementsByTagName('head'); | ||||||
| if (isMobile) { | if (isMobile) { | ||||||
| 	const meta = document.createElement('meta'); | 	const meta = document.createElement('meta'); | ||||||
| 	meta.setAttribute('name', 'viewport'); | 	meta.setAttribute('name', 'viewport'); | ||||||
| 	meta.setAttribute('content', 'width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no'); | 	meta.setAttribute('content', [ | ||||||
|  | 		['width', 'device-width'], | ||||||
|  | 		['initial-scale', '1'], | ||||||
|  | 		['minimum-scale', '1'], | ||||||
|  | 		['maximum-scale', '1'], | ||||||
|  | 		['user-scalable', 'no'] | ||||||
|  | 	].map(x => x.join('=')).join(',')); | ||||||
| 	head.appendChild(meta); | 	head.appendChild(meta); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue