diff options
Diffstat (limited to 'src/com/vaadin/demo/featurebrowser/FeatureBrowser.java')
-rw-r--r-- | src/com/vaadin/demo/featurebrowser/FeatureBrowser.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java b/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java index 5a583f3724..1b06f43a5d 100644 --- a/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java +++ b/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java @@ -107,8 +107,7 @@ public class FeatureBrowser extends com.vaadin.Application implements // Windowing { "Misc", "Windowing", "About windowing", WindowingExample.class }, // JavaScript API - { "Misc", "JavaScript API", - "JavaScript to IT Mill Toolkit communication", + { "Misc", "JavaScript API", "JavaScript to Vaadin communication", JavaScriptAPIExample.class }, // END }; @@ -120,7 +119,7 @@ public class FeatureBrowser extends com.vaadin.Application implements setTheme("example"); // Create new window for the application and give the window a visible. - final Window main = new Window("IT Mill Toolkit 5"); + final Window main = new Window("Vaadin 6"); // set as main window setMainWindow(main); @@ -268,8 +267,8 @@ public class FeatureBrowser extends com.vaadin.Application implements exp.setExpandRatio(ts, 1); final Label status = new Label( - "<a href=\"http://www.itmill.com/developers/\">Developer Area</a>" - + " | <a href=\"http://www.itmill.com/documentation/\">Documentation</a>"); + "<a href=\"http://www.vaadin.com/learn\">30 Seconds to Vaadin</a>" + + " | <a href=\"http://www.vaadin.com/book\">Book of Vaadin</a>"); status.setContentMode(Label.CONTENT_XHTML); exp.addComponent(status); exp.setComponentAlignment(status, Alignment.MIDDLE_RIGHT); |