diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-29 07:44:58 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-29 07:44:58 +0000 |
commit | bfbeb999fd8e7611f654ceaf0941f43e9ec90842 (patch) | |
tree | dbcbfeec34f22f2b42fc8288b36b8c5a86b599ac /WebContent/index.html | |
parent | 62d0c3350e478d5adeb680dcad7e08bc2bd57a2b (diff) | |
download | vaadin-framework-bfbeb999fd8e7611f654ceaf0941f43e9ec90842.tar.gz vaadin-framework-bfbeb999fd8e7611f654ceaf0941f43e9ec90842.zip |
Fixes regression: gwt.hosted parameters added to index.html demo application links in OOPHM package.
svn changeset:8080/svn branch:6.0
Diffstat (limited to 'WebContent/index.html')
-rw-r--r-- | WebContent/index.html | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/WebContent/index.html b/WebContent/index.html index 6ed7f2b3e6..0cfad20cb7 100644 --- a/WebContent/index.html +++ b/WebContent/index.html @@ -7,6 +7,23 @@ <!--[if IE]> <link rel="stylesheet" type="text/css" href="demo/css/ie.css" /> <![endif]--> + <script type="text/javascript"> + window.onload = function() { + try { + if(window.location.search && -1 != window.location.search.indexOf('gwt.hosted')) { + var hostedParam = window.location.search; + var demolinks = document.getElementsByTagName("a"); + for (var k = 0; k < demolinks.length; k++) { + var link = demolinks[k]; + if(link.className.indexOf + ("demoapp") != -1) { + link.href = link.href + hostedParam; + } + } + } + } catch(e) {} + } + </script> </head> <body> @@ -32,7 +49,7 @@ <div id="sampler"> <h2>Vaadin Sampler</h2> <p>Sampler contains examples of most features, as well as combination examples and useful UI patterns that you can use simply by copy-pasting the code.</p> - <p><a href="sampler/">Start Sampler »</a> + <p><a href="sampler/" class="demoapp">Start Sampler »</a> </div> <div id="eclipse"> <h2>Vaadin Eclipse Plugin</h2> @@ -61,7 +78,7 @@ <p class="tutorial">Read the step-by-step tutorial and learn how to build a simple contact management app.</p> <ul> <li><a href="http://www.vaadin.com/tutorial/">Step-by-step Tutorial »</a></li> - <li><a href="AddressBook/">See Address Book application »</a></li> + <li><a href="AddressBook/" class="demoapp">See Address Book application »</a></li> </ul> <h3>Documentation</h3> |