]> source.dussan.org Git - vaadin-framework.git/commitdiff
Disable PopupView Animations (#13593)
authorTeemu Suo-Anttila <teemusa@vaadin.com>
Mon, 14 Apr 2014 12:28:13 +0000 (15:28 +0300)
committerArtur Signell <artur@vaadin.com>
Mon, 14 Apr 2014 12:30:06 +0000 (12:30 +0000)
Change-Id: I450d63abe4e7c4e9fd279fe3a6f6262e2945904b

client/src/com/vaadin/client/ui/VPopupView.java

index 00e39532db8e7dc9d339949c03190731b874674a..384cb006ce97ef65007cb5e0581480659f772fb2 100644 (file)
@@ -102,7 +102,8 @@ public class VPopupView extends HTML implements Iterable<Widget> {
             }
         });
 
-        popup.setAnimationEnabled(true);
+        // TODO: Enable animations once GWT fix has been merged
+        popup.setAnimationEnabled(false);
 
         popup.setAutoHideOnHistoryEventsEnabled(false);
     }