diff options
author | Devaev Maxim <[email protected]> | 2018-08-06 21:25:41 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-08-06 21:25:41 +0300 |
commit | f45efdf2fc1a49341bd7dc88c804b9eea5b1f775 (patch) | |
tree | 3c5472f2254cc932eb14f5c53cc7b550c515bba3 /kvmd/web/index.html | |
parent | ff29d85faf8e8d414006a173b29b4eaf2bceab84 (diff) |
adjustable stream size
Diffstat (limited to 'kvmd/web/index.html')
-rw-r--r-- | kvmd/web/index.html | 16 |
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 ↴ </a> <div class="ctl-dropdown-content"> - <button onclick="ui.showWindow('keyboard-window')">• Show keyboard</button> - <button onclick="ui.showWindow('stream-window')">• Show stream</button> <button onclick="ui.showWindow('about-window')">• Show about</button> <hr> + <button onclick="ui.showWindow('keyboard-window')">• Show keyboard</button> + <hr> + <button onclick="ui.showWindow('stream-window')">• Show stream</button> <button disabled id="stream-reset-button" onclick="stream.clickResetButton();">• 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> |