]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed IE6/IE7 related code from merged change
authorArtur Signell <artur@vaadin.com>
Fri, 23 Mar 2012 06:31:25 +0000 (08:31 +0200)
committerArtur Signell <artur@vaadin.com>
Fri, 23 Mar 2012 06:31:45 +0000 (08:31 +0200)
src/com/vaadin/terminal/gwt/client/ui/VButton.java

index eb7eec03ade101a510e1378ed6bef552088c9c0a..a8c034c557f110aa78ae8b360a3cad1310d33537 100644 (file)
@@ -191,10 +191,9 @@ public class VButton extends FocusWidget implements ClickHandler, FocusHandler,
                 if (BrowserInfo.get().isIE() || BrowserInfo.get().isOpera()) {
                     removeStyleName(CLASSNAME_PRESSED);
                 }
-                // Explicitly prevent IE 6 to 8 from propagating mouseup events
+                // Explicitly prevent IE 8 from propagating mouseup events
                 // upward (fixes #6753)
-                if (BrowserInfo.get().isIE()
-                        && BrowserInfo.get().getIEVersion() < 9) {
+                if (BrowserInfo.get().isIE8()) {
                     event.stopPropagation();
                 }
             }