Show/hide touch menu through display rather than visiblity, fix sending of non-integer screen sizes for small screens.

This commit is contained in:
Michael Jumper
2012-10-24 11:44:57 -07:00
parent 79ada6ffea
commit d0bedf6178
3 changed files with 5 additions and 5 deletions

View File

@@ -149,7 +149,7 @@ GuacamoleUI.supportedAudio = [];
};
GuacamoleUI.hideTouchMenu = function() {
GuacamoleUI.touchMenu.style.visibility = "hidden";
GuacamoleUI.touchMenu.style.display = "none";
};
function positionCentered(element) {
@@ -165,8 +165,8 @@ GuacamoleUI.supportedAudio = [];
}
GuacamoleUI.showTouchMenu = function() {
GuacamoleUI.touchMenu.style.display= "";
positionCentered(GuacamoleUI.touchMenu);
GuacamoleUI.touchMenu.style.visibility = "visible";
};
GuacamoleUI.hideTouchClipboard = function() {