diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-18 15:49:18 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-18 17:00:39 +0300 |
commit | 25b1dd3c3257e59a6a5ac9554d2a5ad8ea707f6a (patch) | |
tree | d46a2c9634f149ca2e66181b5ba21f1bde28aa2c /client | |
parent | 83a0a0c124e22fdd832f367d79e7d8a0f5605084 (diff) | |
download | vaadin-framework-25b1dd3c3257e59a6a5ac9554d2a5ad8ea707f6a.tar.gz vaadin-framework-25b1dd3c3257e59a6a5ac9554d2a5ad8ea707f6a.zip |
Replace onVaadinSessionStarted with a listener (#9635)
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ApplicationConnection.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java index 61d9792b82..ab28ad291b 100644 --- a/client/src/com/vaadin/client/ApplicationConnection.java +++ b/client/src/com/vaadin/client/ApplicationConnection.java @@ -555,7 +555,8 @@ public class ApplicationConnection { // TODO figure out how client and view size could be used better on // server. screen size can be accessed via Browser object, but other // values currently only via transaction listener. - String parameters = "repaintAll=1&" + nativeBootstrapParameters; + String parameters = ApplicationConstants.URL_PARAMETER_REPAINT_ALL + + "=1&" + nativeBootstrapParameters; return parameters; } |