refactoring

This commit is contained in:
syuilo 2021-08-22 22:22:53 +09:00
parent f64d3942d7
commit dad6a77645
2 changed files with 2 additions and 7 deletions

View File

@ -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

View File

@ -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