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-urifu.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-urifu.asciidoc')
-rw-r--r-- | documentation/advanced/advanced-urifu.asciidoc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/documentation/advanced/advanced-urifu.asciidoc b/documentation/advanced/advanced-urifu.asciidoc index 709d6c4bd3..e245c8e727 100644 --- a/documentation/advanced/advanced-urifu.asciidoc +++ b/documentation/advanced/advanced-urifu.asciidoc @@ -68,7 +68,6 @@ method from the current [classname]#Page# object. The fragment is known when the String fragment = getPage().getUriFragment(); enter(fragment); ---- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.urifragment.basic[on-line example, window="_blank"]. To enable reusing the same code when the URI fragment is changed, as described next, it is usually best to build the relevant part of the UI in a separate @@ -110,7 +109,6 @@ public class MyUI extends UI { } } ---- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.urifragment.basic[on-line example, window="_blank"]. <<figure.advanced.urifu>> shows an application that allows specifying the menu selection with a URI fragment and correspondingly sets the fragment when the @@ -173,7 +171,6 @@ public class MyCustomServlet extends VaadinServlet } } ---- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.urifragment.basic[on-line example, window="_blank"]. The crawlable content does not need to be human readable. It can provide an index of links to other application states, as we did in the example above. The |