diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-06-06 11:33:06 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-06-06 11:33:06 +0000 |
commit | adaa83dff90b68c7bb4aa24a61e2c87807b1bf43 (patch) | |
tree | f506466b6a9ff97cf8331a05d2207ae7b22c4fca /src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | |
parent | dd1065300b46d142d3452a6a4d473d5f28a9751b (diff) | |
download | vaadin-framework-adaa83dff90b68c7bb4aa24a61e2c87807b1bf43.tar.gz vaadin-framework-adaa83dff90b68c7bb4aa24a61e2c87807b1bf43.zip |
#7106, forgotten commit
svn changeset:19232/svn branch:6.6
Diffstat (limited to 'src/com/vaadin/terminal/gwt/client/ApplicationConnection.java')
-rwxr-xr-x | src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 5f808ea8cd..056428881f 100755 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -367,7 +367,8 @@ public class ApplicationConnection { + "&vw=" + offsetWidth + "&vh=" + offsetHeight + "&fr=" + token + "&tzo=" + tzOffset + "&rtzo=" + rtzOffset + "&dstd=" + dstDiff + "&dston=" + dstInEffect + "&curdate=" + curDate - + "&wsver=" + widgetsetVersion; + + "&wsver=" + widgetsetVersion + + (BrowserInfo.get().isTouchDevice() ? "&td=1" : ""); return parameters; } |