diff options
author | Oskar Bilén <oskar.bilen@brpsystems.se> | 2017-10-20 10:55:11 +0200 |
---|---|---|
committer | Péter Török <31210544+torok-peter@users.noreply.github.com> | 2017-10-20 11:55:11 +0300 |
commit | f706837fbfdafef24839184c487e975afaa7cfc3 (patch) | |
tree | cd36a36c00d2790fe7ff28a881f8864e65917a8d /documentation/articles | |
parent | 3929d0ac6f8e3d7370412d1d181db1b2361d13e3 (diff) | |
download | vaadin-framework-f706837fbfdafef24839184c487e975afaa7cfc3.tar.gz vaadin-framework-f706837fbfdafef24839184c487e975afaa7cfc3.zip |
Typo in code (#10218)
Remove "java" from code example
Diffstat (limited to 'documentation/articles')
-rw-r--r-- | documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc b/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc index ad2c3b7a7b..e7685d3f6d 100644 --- a/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc +++ b/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc @@ -52,7 +52,7 @@ resize listener can be added like this: [source,java] .... -javaPage.getCurrent().addBrowserWindowResizeListener( +Page.getCurrent().addBrowserWindowResizeListener( new Page.BrowserWindowResizeListener() { @Override public void browserWindowResized(BrowserWindowResizeEvent event) { |