diff options
-rw-r--r-- | WebContent/themes/default/theme.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/themes/default/theme.js b/WebContent/themes/default/theme.js index 0e11183536..9a2365d306 100644 --- a/WebContent/themes/default/theme.js +++ b/WebContent/themes/default/theme.js @@ -227,7 +227,7 @@ DefaultTheme.prototype.nodeToString = function(node, deep) { DefaultTheme.prototype.createInputElementTo = function(target,type,className,focusid) {
var input = null;
- if (document.all) {
+ if (document.all && !window.opera) {
// IE only
input = this.createElementTo(target,"<input type='"+type+"'>");
} else {
|