diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2006-12-27 09:32:33 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2006-12-27 09:32:33 +0000 |
commit | dc2a4eda077447a5fc6fd361712146a24431a287 (patch) | |
tree | 0a3ea2bc82391b230e51b2dd4c7b403aba74974b | |
parent | fee7be413bdba83025a68fd3e65a183f61ab212d (diff) | |
download | vaadin-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.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 {
|