mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 22:06:06 +02:00
cleanup html
This commit is contained in:
+3
-3
@@ -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
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user