summaryrefslogtreecommitdiffstats
path: root/shared/src/com
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-01-16 09:23:57 +0200
committerArtur Signell <artur@vaadin.com>2013-01-16 09:26:25 +0200
commit75a09fb9df67afbc9042b90f41b199f17387a53d (patch)
tree81484c711f668c069701ef6672eff5241cb6487f /shared/src/com
parent519eb9ee65f6d662bfc07cb6ce310ba95c5a30cc (diff)
downloadvaadin-framework-75a09fb9df67afbc9042b90f41b199f17387a53d.tar.gz
vaadin-framework-75a09fb9df67afbc9042b90f41b199f17387a53d.zip
Fixed loadStyle to be more sensible (#10746)7.0.0.rc1
Default loadStyle is now eager. Only RichTextArea and ColorPicker are set as lazy. Change-Id: Icc22ea7f861a1435f94ff74426a958c9ca32ba77
Diffstat (limited to 'shared/src/com')
-rw-r--r--shared/src/com/vaadin/shared/ui/Connect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/src/com/vaadin/shared/ui/Connect.java b/shared/src/com/vaadin/shared/ui/Connect.java
index cac5a4fd4a..17a8001b27 100644
--- a/shared/src/com/vaadin/shared/ui/Connect.java
+++ b/shared/src/com/vaadin/shared/ui/Connect.java
@@ -82,7 +82,7 @@ public @interface Connect {
* @return the hint for the widget set generator how the client side
* implementation should be loaded to the browser
*/
- LoadStyle loadStyle() default LoadStyle.DEFERRED;
+ LoadStyle loadStyle() default LoadStyle.EAGER;
public enum LoadStyle {
/**