summaryrefslogtreecommitdiff
path: root/kvmd/web/index.html
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2018-08-06 21:25:41 +0300
committerDevaev Maxim <[email protected]>2018-08-06 21:25:41 +0300
commitf45efdf2fc1a49341bd7dc88c804b9eea5b1f775 (patch)
tree3c5472f2254cc932eb14f5c53cc7b550c515bba3 /kvmd/web/index.html
parentff29d85faf8e8d414006a173b29b4eaf2bceab84 (diff)
adjustable stream size
Diffstat (limited to 'kvmd/web/index.html')
-rw-r--r--kvmd/web/index.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/kvmd/web/index.html b/kvmd/web/index.html
index 90e5da0e..9d87e392 100644
--- a/kvmd/web/index.html
+++ b/kvmd/web/index.html
@@ -46,11 +46,23 @@
System &#8628;
</a>
<div class="ctl-dropdown-content">
- <button onclick="ui.showWindow('keyboard-window')">&bull; Show keyboard</button>
- <button onclick="ui.showWindow('stream-window')">&bull; Show stream</button>
<button onclick="ui.showWindow('about-window')">&bull; Show about</button>
<hr>
+ <button onclick="ui.showWindow('keyboard-window')">&bull; Show keyboard</button>
+ <hr>
+ <button onclick="ui.showWindow('stream-window')">&bull; Show stream</button>
<button disabled id="stream-reset-button" onclick="stream.clickResetButton();">&bull; Reset stream</button>
+ <hr>
+ <div data-dont-hide-menu id="stream-size">
+ Stream size: <span id="stream-size-counter">100%</span>
+ <div id="stream-size-slider-box">
+ <input
+ type="range" min="50" max="150" value="100" step="10"
+ oninput="stream.resize(this.value);"
+ onchange="stream.resize(this.value);"
+ />
+ </div>
+ </div>
</div>
</div>
</li>