This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGui900 visual editor.html
50 lines (47 loc) · 2.01 KB
/
Gui900 visual editor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" theme="dark" style="
--settings-screen-width-px: 240px;
--settings-screen-height-px: 320px
">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gui900 visual editor</title>
<link rel="shortcut icon" href="res/img/icon-square.png" type="image/x-icon">
<link rel="manifest" href="res/manifest.json">
<script>
var require = { paths: { 'vs': 'res/code-editor/monaco-editor/min/vs' } };
if(window.document.documentMode){
document.write("Gui900 visual editor is not supported in Internet Explorer")
}
</script>
<!--JQuery (development)-->
<script src="res/JQuery/jquery.js"></script>
<script src="res/JQuery/JQuery UI/jquery-ui.min.js"></script>
<!--Loads All JS and CSS files-->
<script src="res/loader.js"></script>
</head>
<body onunload="if((window.docWin!=undefined) && (!window.docWin.closed)){
window.docWin.close();
}
if((window.floatingBoxes.preview!=undefined) && (!window.floatingBoxes.preview.closed)){
window.floatingBoxes.preview.close();
}
if((window.floatingBoxes.properties!=undefined) && (!window.floatingBoxes.properties.closed)){
window.floatingBoxes.properties.close();
}">
<noscript style="text-align: center; color:red">
<h1>Scripts disabled</h1>
<p>You have disabled scripts, or your browser does not support scripts.<br/>
This editor cannot function without scripts allowed/supported</p>
</noscript>
<div style="text-align: center;padding:30px" id="loading-header">
<i class="fas fa-pulse fa-5x fa-spinner" style="height:80px;display: inline-block;"></i>
<h1>Loading...</h1>
<progress id="loading-progress"></progress>
</div>
<main class="content" style="display: none;">
</main>
<div id="notifications">
</div>
</body></html>