diff options
author | Devaev Maxim <[email protected]> | 2021-04-13 10:14:27 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-04-13 10:14:27 +0300 |
commit | 5dc123e1860be5e582de1ed4341296c3c3f649da (patch) | |
tree | d096949bec0a122726c96350150f5df6b8618961 /web/kvm | |
parent | 6de0ee0017df50d155a00d748ed2b676f8293655 (diff) |
refactoring
Diffstat (limited to 'web/kvm')
-rw-r--r-- | web/kvm/index.html | 6 | ||||
-rw-r--r-- | web/kvm/window-about.pug | 2 | ||||
-rw-r--r-- | web/kvm/window-keyboard.pug | 2 | ||||
-rw-r--r-- | web/kvm/window-stream.pug | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index fdfb5dd9..3fd7a57c 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -456,7 +456,7 @@ </div> </li> </ul> - <div class="window window-resizable" id="stream-window" data-close-confirm="Do you want to close the stream? This action will temporarily stop<br>the video transmission until you open the broadcast again.<br>This can be useful for saving traffic."> + <div class="window window-resizable" id="stream-window" data-close-confirm="Do you want to close the stream? This action will temporarily stop<br>the video transmission until you open the broadcast again.<br>This can be useful for saving traffic." data-show-by-button="show-stream-button"> <div class="window-header" id="stream-window-header"> <div class="window-grab">Stream</div> <button class="window-button-close">×</button> @@ -494,7 +494,7 @@ </div> </div> </div> - <div class="window" id="keyboard-window"> + <div class="window" id="keyboard-window" data-show-by-button="show-keyboard-button"> <div class="window-header" id="keyboard-window-header"> <div class="window-grab">Virtual Keyboard</div> <button class="window-button-close">×</button> @@ -1338,7 +1338,7 @@ </div> </div> </div> - <div class="window" id="about-window"> + <div class="window" id="about-window" data-show-by-button="show-about-button"> <div class="window-header"> <div class="window-grab">About</div> <button class="window-button-close">×</button> diff --git a/web/kvm/window-about.pug b/web/kvm/window-about.pug index 17d1c04b..0c7da8bf 100644 --- a/web/kvm/window-about.pug +++ b/web/kvm/window-about.pug @@ -9,7 +9,7 @@ mixin about_tab(name, title, checked=false) else span(class="code-comment") No data -div(id="about-window" class="window") +div(id="about-window" class="window" data-show-by-button="show-about-button") div(class="window-header") div(class="window-grab") About button(class="window-button-close") × diff --git a/web/kvm/window-keyboard.pug b/web/kvm/window-keyboard.pug index 986ca91f..95322f2b 100644 --- a/web/kvm/window-keyboard.pug +++ b/web/kvm/window-keyboard.pug @@ -15,7 +15,7 @@ mixin empty_key(width=0) mixin lamp(cls) img(class=`inline-lamp ${cls} led-gray` src=`${svg_dir}/led-square.svg`) -div(id="keyboard-window" class="window") +div(id="keyboard-window" class="window" data-show-by-button="show-keyboard-button") div(id="keyboard-window-header" class="window-header") div(class="window-grab") Virtual Keyboard button(class="window-button-close") × diff --git a/web/kvm/window-stream.pug b/web/kvm/window-stream.pug index 2595fe3b..dc083600 100644 --- a/web/kvm/window-stream.pug +++ b/web/kvm/window-stream.pug @@ -2,7 +2,7 @@ - confirm_msg += "the video transmission until you open the broadcast again.<br>"; - confirm_msg += "This can be useful for saving traffic."; -div(id="stream-window" class="window window-resizable" data-close-confirm=confirm_msg) +div(id="stream-window" class="window window-resizable" data-close-confirm=confirm_msg data-show-by-button="show-stream-button") div(id="stream-window-header" class="window-header") div(class="window-grab") Stream button(class="window-button-close") × |