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