forked from FoundKeyGang/FoundKey
refactoring
This commit is contained in:
parent
f64d3942d7
commit
dad6a77645
2 changed files with 2 additions and 7 deletions
|
@ -101,15 +101,12 @@ window.addEventListener('resize', () => {
|
|||
});
|
||||
//#endregion
|
||||
|
||||
// Get the <head> element
|
||||
const head = document.getElementsByTagName('head')[0];
|
||||
|
||||
// If mobile, insert the viewport meta tag
|
||||
if (isMobile || window.innerWidth <= 1024) {
|
||||
const viewport = document.getElementsByName('viewport').item(0);
|
||||
viewport.setAttribute('content',
|
||||
`${viewport.getAttribute('content')},minimum-scale=1,maximum-scale=1,user-scalable=no`);
|
||||
head.appendChild(viewport);
|
||||
document.head.appendChild(viewport);
|
||||
}
|
||||
|
||||
//#region Set lang attr
|
||||
|
|
|
@ -60,8 +60,6 @@
|
|||
? `?salt=${localStorage.getItem('salt')}`
|
||||
: '';
|
||||
|
||||
const head = document.getElementsByTagName('head')[0];
|
||||
|
||||
const script = document.createElement('script');
|
||||
script.setAttribute('src', `/assets/app.${v}.js${salt}`);
|
||||
script.setAttribute('async', 'true');
|
||||
|
@ -70,7 +68,7 @@
|
|||
renderError('APP_FETCH_FAILED');
|
||||
checkUpdate();
|
||||
});
|
||||
head.appendChild(script);
|
||||
document.head.appendChild(script);
|
||||
//#endregion
|
||||
|
||||
//#region Theme
|
||||
|
|
Loading…
Reference in a new issue