From 6f00e70ecc3a707954e8888810bca34d114758bc Mon Sep 17 00:00:00 2001 From: Udo Walter Date: Sat, 8 Aug 2020 02:16:14 +0200 Subject: 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) --- src/main/resources/bwlpModule.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main/resources/bwlpModule.js') diff --git a/src/main/resources/bwlpModule.js b/src/main/resources/bwlpModule.js index 0a0f116..f0605e3 100644 --- a/src/main/resources/bwlpModule.js +++ b/src/main/resources/bwlpModule.js @@ -3,3 +3,10 @@ angular.module('group', [ ]); angular.module('index').requires.push('group'); + +// Set custom logo +$http = angular.injector(["ng"]).get("$http"); +$http.get('api/ext/de.bwlehrpool.bwgpul/logoUrl').then(function (response) { + if (!response.data) return + document.documentElement.style.setProperty('--logo', "url('" + response.data + "')") +}) -- cgit v1.2.3-55-g7522