mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 10:13:09 +02:00
Refactor
This commit is contained in:
parent
09397f3f65
commit
04bc84358d
1 changed files with 6 additions and 7 deletions
|
@ -45,13 +45,12 @@
|
||||||
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', Object.entries({
|
meta.setAttribute('content',
|
||||||
'width': 'device-width',
|
'width=device-width,' +
|
||||||
'initial-scale': '1',
|
'initial-scale=1,' +
|
||||||
'minimum-scale': '1',
|
'minimum-scale=1,' +
|
||||||
'maximum-scale': '1',
|
'maximum-scale=1,' +
|
||||||
'user-scalable': 'no'
|
'user-scalable=no');
|
||||||
}).map(x => x.join('=')).join(','));
|
|
||||||
head.appendChild(meta);
|
head.appendChild(meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue