summaryrefslogtreecommitdiffstats
path: root/src/main/resources/templates/groupField.html
diff options
context:
space:
mode:
authorUdo Walter2020-08-08 02:16:14 +0200
committerUdo Walter2020-08-08 02:16:14 +0200
commit6f00e70ecc3a707954e8888810bca34d114758bc (patch)
tree3a3f0b4a951544357d4a86d6aed84948261d81cb /src/main/resources/templates/groupField.html
parentReduce SPAM by using .debug() not .info() (diff)
downloadbwlp-guacamole-ext-6f00e70ecc3a707954e8888810bca34d114758bc.tar.gz
bwlp-guacamole-ext-6f00e70ecc3a707954e8888810bca34d114758bc.tar.xz
bwlp-guacamole-ext-6f00e70ecc3a707954e8888810bca34d114758bc.zip
Some UI changes:
- add double click to select location and continue - add a preselected location (first one in the list without a password) - add logo above the location selection - remove redundant text at the bottom - the logo is now customizable via the guacamole.properties file (property name: slx-logo-url)
Diffstat (limited to 'src/main/resources/templates/groupField.html')
-rw-r--r--src/main/resources/templates/groupField.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/resources/templates/groupField.html b/src/main/resources/templates/groupField.html
index 168d13b..8c3ce4f 100644
--- a/src/main/resources/templates/groupField.html
+++ b/src/main/resources/templates/groupField.html
@@ -1,7 +1,8 @@
<div style="font-size: 0.9em; color: grey; margin: -5px 0 20px 0">{{ 'GROUP_SELECTION.RESOLUTION_INFO' | translate }}</div>
<table class="bwlp-group-container">
<tr ng-repeat="group in field.groups" class="bwlp-group"
- ng-click="selectGroup($event, group.id)">
+ ng-click="selectGroup($event, group.id)" ng-dblclick="submitGroup($event, group.id)"
+ ng-class="{ 'selected-group': data.id === group.id }">
<td>
{{ group.name }}
</td>