summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java
diff options
context:
space:
mode:
authorMarc Englund <marc.englund@itmill.com>2009-05-12 13:08:56 +0000
committerMarc Englund <marc.englund@itmill.com>2009-05-12 13:08:56 +0000
commit03c3e6adb59d3480564b9d541fdf65ceb0089ed0 (patch)
tree8b74050537aa5ab6f12374028a83e517b913b44f /src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java
parent01f5470edb4c6e23e5c62e9a826116beea0b37ae (diff)
downloadvaadin-framework-03c3e6adb59d3480564b9d541fdf65ceb0089ed0.tar.gz
vaadin-framework-03c3e6adb59d3480564b9d541fdf65ceb0089ed0.zip
Renaming ITMILL/ -> VAADIN/ part 2 (for #2904)
svn changeset:7765/svn branch:6.0
Diffstat (limited to 'src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java')
-rw-r--r--src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java b/src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java
index d902eb8323..5956db9853 100644
--- a/src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java
+++ b/src/com/vaadin/automatedtests/featurebrowser/JavaScriptAPIExample.java
@@ -22,7 +22,7 @@ import com.vaadin.ui.Button.ClickEvent;
*/
public class JavaScriptAPIExample extends CustomComponent {
- public static final String txt = "<p>For advanced client side programmers Toolkit offers a simple method which can be used to force sync client with server. This may be needed for example if another part of a mashup changes things on server.</p> (more examples will be added here as the APIs are made public)<br/><br/><A href=\"javascript:itmill.forceSync();\">javascript:itmill.forceSync();</A>";
+ public static final String txt = "<p>For advanced client side programmers Toolkit offers a simple method which can be used to force sync client with server. This may be needed for example if another part of a mashup changes things on server.</p> (more examples will be added here as the APIs are made public)<br/><br/><A href=\"javascript:vaadin.forceSync();\">javascript:itmill.forceSync();</A>";
private final VerticalLayout main;
private final Label l;
@@ -61,7 +61,7 @@ public class JavaScriptAPIExample extends CustomComponent {
Label l = new Label(
"This label will update it's server-side value AFTER it's rendered to the client-side. "
+ "The client will be synchronized on reload, when you click a button, "
- + "or when itmill.forceSync() is called.") {
+ + "or when vaadin.forceSync() is called.") {
@Override
public void paintContent(PaintTarget target) throws PaintException {