GUACAMOLE-723: Display connection thumbnails for all non-current active connections within the client interface.

This commit is contained in:
Michael Jumper
2018-11-12 10:13:32 -08:00
parent 57cdd2b483
commit e7eb46b2a1
3 changed files with 97 additions and 1 deletions

View File

@@ -8,9 +8,21 @@
<!-- Central portion of view -->
<div class="client-body" guac-touch-drag="clientDrag" guac-touch-pinch="clientPinch">
<!-- Client -->
<!-- Client for current connection -->
<guac-client client="client"></guac-client>
<!-- All other active connections -->
<div id="other-connections">
<div ng-repeat="otherClient in otherClients" class="connection">
<a href="#/client/{{otherClient.id}}">
<div class="thumbnail">
<guac-thumbnail client="otherClient"></guac-thumbnail>
</div>
<div class="name">{{ otherClient.title }}</div>
</a>
</div>
</div>
</div>
<!-- Bottom portion of view -->