]> source.dussan.org Git - vaadin-framework.git/commitdiff
Minor typo fixed + some text formatting for WindowingExample.
authorJouni Koivuviita <jouni.koivuviita@itmill.com>
Mon, 15 Sep 2008 13:06:14 +0000 (13:06 +0000)
committerJouni Koivuviita <jouni.koivuviita@itmill.com>
Mon, 15 Sep 2008 13:06:14 +0000 (13:06 +0000)
svn changeset:5401/svn branch:trunk

src/com/itmill/toolkit/demo/featurebrowser/WindowingExample.java

index df720bc54efd42326e65c67b68f2ee61ea71c634..3affe5de07dbcbd57ec4ffe095494b4a33c7f3b8 100644 (file)
@@ -20,16 +20,16 @@ import com.itmill.toolkit.ui.Button.ClickEvent;
  */\r
 public class WindowingExample extends CustomComponent {\r
 \r
-    public static final String txt = "<p>There are two main types of windows: application-level windows, and"\r
-            + "\"subwindows\". </p><p> A subwindow is rendered as a \"inline\" popup window"\r
+    public static final String txt = "<p>There are two main types of windows: application-level windows, and "\r
+            + "\"sub windows\".</p><p>A sub window is rendered as a \"inline\" popup window"\r
             + " within the (native) browser window to which it was added. You can create"\r
-            + " a subwindow by creating a new Window and adding it to a application-level window, for instance"\r
+            + " a sub window by creating a new Window and adding it to a application-level window, for instance"\r
             + " your main window. </p><p> In contrast, you create a application-level window by"\r
             + " creating a new Window and adding it to the Application. Application-level"\r
             + " windows are not shown by default - you need to open a browser window for"\r
             + " the url representing the window. You can think of the application-level"\r
             + " windows as separate views into your application - and a way to create a"\r
-            + " \"native\" browser window. </p><p> Depending on your needs, it's also"\r
+            + " \"native\" browser window.</p><p>Depending on your needs, it's also"\r
             + " possible to create a new window instance (with it's own internal state)"\r
             + " for each new (native) browser window, or you can share the same instance"\r
             + " (and state) between several browser windows (the latter is most useful"\r