mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-09 14:41:21 +00:00
Connection icons, initial autohiding menu implementation.
This commit is contained in:
@@ -131,6 +131,9 @@
|
||||
var protocol = document.createElement("td");
|
||||
var id = document.createElement("td");
|
||||
|
||||
var protocolIcon = document.createElement("div");
|
||||
protocolIcon.className = "protocol icon " + configs[i].protocol;
|
||||
|
||||
// Set CSS
|
||||
protocol.className = "protocol";
|
||||
id.className = "name";
|
||||
@@ -141,7 +144,8 @@
|
||||
"client.xhtml?" + encodeURIComponent(configs[i].id));
|
||||
|
||||
// Set cell contents
|
||||
protocol.textContent = configs[i].protocol;
|
||||
protocol.appendChild(protocolIcon);
|
||||
//protocol.textContent = configs[i].protocol;
|
||||
clientLink.textContent = configs[i].id;
|
||||
id.appendChild(clientLink);
|
||||
|
||||
|
Reference in New Issue
Block a user