From d17b8baa95b3b7116fa2b633795a180c56c45220 Mon Sep 17 00:00:00 2001 From: Jani Laakso Date: Mon, 11 Feb 2008 13:22:02 +0000 Subject: [PATCH] Fixed deadlock on JavaScriptAPIExample, also better documentation. svn changeset:3765/svn branch:trunk --- .../toolkit/demo/featurebrowser/JavaScriptAPIExample.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/itmill/toolkit/demo/featurebrowser/JavaScriptAPIExample.java b/src/com/itmill/toolkit/demo/featurebrowser/JavaScriptAPIExample.java index a07700a6ce..49aac93ded 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/JavaScriptAPIExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/JavaScriptAPIExample.java @@ -59,7 +59,7 @@ public class JavaScriptAPIExample extends CustomComponent { // Label l = new Label( - "This label will update it's value AFTER it's rendered to the client. " + "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.") { @@ -86,7 +86,6 @@ public class JavaScriptAPIExample extends CustomComponent { try { Thread.sleep(500); label.setValue(new Date().toString()); - join(); } catch (Exception e) { e.printStackTrace(); } -- 2.39.5