GUACAMOLE-723: Avoid DOM reflow when switching connections.

This commit is contained in:
Michael Jumper
2018-11-12 09:40:32 -08:00
parent 44df0e36e0
commit 2d0bc70214
3 changed files with 35 additions and 2 deletions

View File

@@ -17,12 +17,12 @@
<div class="client-bottom">
<!-- Text input -->
<div class="text-input-container" ng-show="showTextInput">
<div class="text-input-container" ng-class="{ open : showTextInput }">
<guac-text-input needs-focus="showTextInput"></guac-text-input>
</div>
<!-- On-screen keyboard -->
<div class="keyboard-container" ng-show="showOSK">
<div class="keyboard-container" ng-class="{ open : showOSK }">
<guac-osk layout="'CLIENT.URL_OSK_LAYOUT' | translate"></guac-osk>
</div>