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
var displayText = cap.textContent;
if (!displayText) displayText = cap.text;
// Keysym
var keysym = null;
@@ -149,7 +150,7 @@ Guacamole.OnScreenKeyboard = function(url) {
sticky = true;
this.getDisplayText = function() {
return cap.textContent;
return displayText;
};
this.getKeySym = function() {