From a8cce893907482ddc4dc93ac2bcf21f7823fde85 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 4 Nov 2012 16:09:00 -0800 Subject: [PATCH] Remove href from link. --- guacamole/src/main/webapp/index.xhtml | 1 - guacamole/src/main/webapp/styles/login.css | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/guacamole/src/main/webapp/index.xhtml b/guacamole/src/main/webapp/index.xhtml index e5410d536..9d4dd8275 100644 --- a/guacamole/src/main/webapp/index.xhtml +++ b/guacamole/src/main/webapp/index.xhtml @@ -205,7 +205,6 @@ // Create link to client var clientLink = document.createElement("a"); var url = getClientURL(configs[i].id) - clientLink.setAttribute("href", url); connection.onclick = new_client(url); protocol.appendChild(protocolIcon); diff --git a/guacamole/src/main/webapp/styles/login.css b/guacamole/src/main/webapp/styles/login.css index 8544073ec..377390d24 100644 --- a/guacamole/src/main/webapp/styles/login.css +++ b/guacamole/src/main/webapp/styles/login.css @@ -291,7 +291,7 @@ div#recent-connections div.connection { background: #CDA; } -.connection .name a[href] { +.connection .name a { text-decoration: none; color: black; font-weight: normal;