Fix errors in IE due to lack of textContent support.

This commit is contained in:
Michael Jumper
2011-12-11 12:04:27 -08:00
parent e362394d10
commit d5b093023f

View File

@@ -112,6 +112,7 @@ Guacamole.OnScreenKeyboard = function(url) {
// Displayed text // Displayed text
var displayText = cap.textContent; var displayText = cap.textContent;
if (!displayText) displayText = cap.text;
// Keysym // Keysym
var keysym = null; var keysym = null;
@@ -149,7 +150,7 @@ Guacamole.OnScreenKeyboard = function(url) {
sticky = true; sticky = true;
this.getDisplayText = function() { this.getDisplayText = function() {
return cap.textContent; return displayText;
}; };
this.getKeySym = function() { this.getKeySym = function() {