From 757ddec1ae86d22fa40d836c8de51dcdfedea26e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 24 Mar 2012 22:57:40 -0700 Subject: [PATCH] Add default connection name, do not hide cursor after error, remove old classes. --- guacamole/src/main/webapp/scripts/interface.js | 8 +------- guacamole/src/main/webapp/styles/client.css | 4 ++++ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/guacamole/src/main/webapp/scripts/interface.js b/guacamole/src/main/webapp/scripts/interface.js index 4fecbc75e..ccac658b7 100644 --- a/guacamole/src/main/webapp/scripts/interface.js +++ b/guacamole/src/main/webapp/scripts/interface.js @@ -419,7 +419,7 @@ var GuacamoleUI = { GuacamoleUI.attach = function(guac) { var title_prefix = null; - var connection_name = null + var connection_name = "Guacamole"; var guac_display = guac.getDisplay(); @@ -545,13 +545,7 @@ GuacamoleUI.attach = function(guac) { // Connected case 3: - GuacamoleUI.hideStatus(); - GuacamoleUI.display.className = - GuacamoleUI.display.className.replace(/guac-loading/, ''); - - GuacamoleUI.menu.className = "connected"; - title_prefix = null; break; diff --git a/guacamole/src/main/webapp/styles/client.css b/guacamole/src/main/webapp/styles/client.css index a0907027b..9765833a6 100644 --- a/guacamole/src/main/webapp/styles/client.css +++ b/guacamole/src/main/webapp/styles/client.css @@ -33,6 +33,10 @@ img { overflow: hidden; } +.guac-error .software-cursor { + cursor: default; +} + * { -webkit-tap-highlight-color: rgba(0,0,0,0); }