aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2006-12-27 09:32:33 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2006-12-27 09:32:33 +0000
commitdc2a4eda077447a5fc6fd361712146a24431a287 (patch)
tree0a3ea2bc82391b230e51b2dd4c7b403aba74974b
parentfee7be413bdba83025a68fd3e65a183f61ab212d (diff)
downloadvaadin-framework-dc2a4eda077447a5fc6fd361712146a24431a287.tar.gz
vaadin-framework-dc2a4eda077447a5fc6fd361712146a24431a287.zip
added check not to mix opera and IE, fixes #129
svn changeset:150/svn branch:toolkit
-rw-r--r--WebContent/themes/default/theme.js2
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 {