-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathugui-devtools.htm
85 lines (66 loc) · 2.84 KB
/
ugui-devtools.htm
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!--
In case the user doesn't want to use the supplied style.css,
the developer toolbar will still render properly
-->
<link rel="stylesheet" href="_style/ugui-devtools.css">
<div id="uguiDevTools" class="slideHide">
<nav>
<span data-nav="uguiAbout">About</span>
<span data-nav="uguiSwapper">Style Swapper</span>
<span data-nav="uguiShortcuts">Shortcuts</span>
<!-- <span data-nav="uguiCommand">CMD Output</span> -->
<!-- <span data-nav="uguiExecutable">Executable Info</span> -->
</nav>
<section class="uguiAbout">
<a href="http://ugui.io/tutorials/getting-started.htm" class="external-link"><img src="_img/ugui.png" alt="UGUI Logo" title="Watch the Getting Started video."></a>
<h3>UGUI Developer Tools</h3>
<p>Watch <a href="http://ugui.io/tutorials/getting-started.htm" class="external-link">the UGUI Introduction video</a>.</p>
<p><strong>To hide the UGUI Developer Toolbar</strong> change the class of <code><body></code> from <code>dev</code> to <code>prod</code>.</p>
<p>You are using version <span class="versionUGUI">1.1.2</span> of UGUI.</p>
</section>
<!--
<section class="uguiCommand">
<span>Select an executable to preview its output.</span>
<select class="executableName"></select>
<pre id="commandLine"></pre>
</section>
-->
<section class="uguiShortcuts">
<p>Active key bindings while in developer mode:</p>
<ul>
<li><strong>F5</strong> Soft Refresh</li>
<li><strong>Shift+F5</strong> or <strong>CMD+Shift+R</strong> Refresh ignoring cache</li>
<li><strong>CTRL+F5</strong> or <strong>CTRL+R</strong> or <strong>CMD+R</strong> Hard Refresh</li>
<li><strong>F12</strong> or <strong>CTRL+Shift+I</strong> Open Webkit's Developer Tools</li>
</ul>
</section>
<section class="uguiSwapper">
<p>Test out different looks for your application. Click 'Keep' to use the currently display style</p>
<select id="swatchSwapper"></select>
<button id="setNewSwatch">Keep</button>
<span class="newSwatchSaved">Saved</span>
</section>
<!--
<section class="uguiExecutable">
<div class="helpIntro">Get information from your executable.
<select class="executableName"></select>
<select class="helpDropdown">
<option></option>
<option value="/?">/?</option>
<option value="-?">-?</option>
<option value="--?">--?</option>
<option value="/help">/help</option>
<option value="-help">-help</option>
<option value="--help">--help</option>
<option value="/about">/about</option>
<option value="-about">-about</option>
<option value="--about">--about</option>
<option value="/h">/h</option>
<option value="-h">-h</option>
<option value="--h">--h</option>
</select>
</div>
<pre class="executableHelp"></pre>
</section>
-->
</div>