cleanup html

This commit is contained in:
pypy
2020-01-12 19:25:14 +09:00
parent b7cd2d8fee
commit e436fa92cc
2 changed files with 6 additions and 6 deletions

View File

@@ -130,14 +130,14 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/element-ui/2.11.1/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/element-ui/2.11.1/locale/en.min.js"></script>
<script>
(() => {
(function () {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = `vr.css?_=${Date.now()}`;
document.getElementsByTagName('head')[0].appendChild(link);
document.head.appendChild(link);
var script = document.createElement('script');
script.src = `vr.js?_=${Date.now()}`;
document.getElementsByTagName('body')[0].appendChild(script);
document.body.appendChild(script);
})();
</script>
</body>