diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2017-01-10 08:36:09 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-01-10 08:36:09 +0200 |
commit | cba4eb476b559cc97ccf2d8197d176a0813707c7 (patch) | |
tree | f6c17b79ea161809d31e044425b95486e4c99efc /documentation/advanced/advanced-windows.asciidoc | |
parent | 91723ac8dde24249b2753d671f42d0f3cddb20a9 (diff) | |
download | vaadin-framework-cba4eb476b559cc97ccf2d8197d176a0813707c7.tar.gz vaadin-framework-cba4eb476b559cc97ccf2d8197d176a0813707c7.zip |
Remove all referrals to book examples (#8163)
Minor documentation fixes.
Diffstat (limited to 'documentation/advanced/advanced-windows.asciidoc')
-rw-r--r-- | documentation/advanced/advanced-windows.asciidoc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/documentation/advanced/advanced-windows.asciidoc b/documentation/advanced/advanced-windows.asciidoc index d838ee81d0..0e8b5351a6 100644 --- a/documentation/advanced/advanced-windows.asciidoc +++ b/documentation/advanced/advanced-windows.asciidoc @@ -68,7 +68,7 @@ For example: [source, java] ---- -@Theme("book-examples") +@Theme("mytheme") public static class MyPopupUI extends UI { @Override protected void init(VaadinRequest request) { @@ -147,10 +147,9 @@ browsing can open the window in another tab, depending on the browser settings. === URL and Session The URL path for a popup window UI is by default determined from the UI class -name, by prefixig it with " [literal]#++popup/++#". For example, for the example -UI giver earlier, the URL would be -[literal]#++/book-examples/book/popup/MyPopupUI++#. - +name, by prefixing it with "[literal]#++popup/++#". For example, for the +UI given earlier, the URL would be +[literal]#++/example/base/popup/MyPopupUI++#. [[advanced.windows.popup-closing]] |