]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #2019
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 29 Aug 2008 12:45:50 +0000 (12:45 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 29 Aug 2008 12:45:50 +0000 (12:45 +0000)
svn changeset:5309/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/IFormLayout.java

index 31a5a3ad7f81ee0376eeef71307ad7956cdec703..39680c9ab471b15b52e6d646eb77eb52435a05ae 100644 (file)
@@ -281,9 +281,7 @@ public class IFormLayout extends FlexTable implements Container {
             if (uidl.hasAttribute("error")) {
                 if (errorIndicatorElement == null) {
                     errorIndicatorElement = DOM.createDiv();
-                    if (Util.isIE()) {
-                        DOM.setInnerHTML(errorIndicatorElement, "&nbsp;");
-                    }
+                    DOM.setInnerHTML(errorIndicatorElement, "&nbsp;");
                     DOM.setElementProperty(errorIndicatorElement, "className",
                             "i-errorindicator");
                     DOM.appendChild(getElement(), errorIndicatorElement);