Add default connection name, do not hide cursor after error, remove old classes.

This commit is contained in:
Michael Jumper
2012-03-24 22:57:40 -07:00
parent 50d8e4c319
commit 757ddec1ae
2 changed files with 5 additions and 7 deletions

View File

@@ -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;

View File

@@ -33,6 +33,10 @@ img {
overflow: hidden;
}
.guac-error .software-cursor {
cursor: default;
}
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}