summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2014-04-14 15:28:13 +0300
committerArtur Signell <artur@vaadin.com>2014-04-14 12:30:06 +0000
commitdab3e63aa6644cfc3800b672abb4dd9e5f3bc4ee (patch)
tree6e6445fc23a9b30fd45cb0019ce0c41b44564d3b /client
parent8314e3c82cd35d13a0eeb381b681b4b03ba8a0eb (diff)
downloadvaadin-framework-dab3e63aa6644cfc3800b672abb4dd9e5f3bc4ee.tar.gz
vaadin-framework-dab3e63aa6644cfc3800b672abb4dd9e5f3bc4ee.zip
Disable PopupView Animations (#13593)
Change-Id: I450d63abe4e7c4e9fd279fe3a6f6262e2945904b
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ui/VPopupView.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupView.java b/client/src/com/vaadin/client/ui/VPopupView.java
index 00e39532db..384cb006ce 100644
--- a/client/src/com/vaadin/client/ui/VPopupView.java
+++ b/client/src/com/vaadin/client/ui/VPopupView.java
@@ -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);
}