Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: use relative urls in index.html (#5586)
Using a relative url will make this page work whether run via the server
of npm start or a third party server that serves other things as well.
  • Loading branch information
gkatsev committed Nov 14, 2018
1 parent 209d9f9 commit dec31e4
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions index.html
Expand Up @@ -7,21 +7,21 @@
<body>
<h2>Navigation</h2>
<ul>
<li><a href="/test/debug.html">Run unit tests in browser.</a></li>
<li><a href="/sandbox/index.html">Simple Demo (also seen below)</a></li>
<li><a href="/sandbox/plugin.html">Plugin Demo</a></li>
<li><a href="/sandbox/responsive.html">Responsive Demo</a></li>
<li><a href="/sandbox/middleware-play.html">Middleware Play Demo</a></li>
<li><a href="/sandbox/icons.html">Icons Demo</a></li>
<li><a href="/sandbox/focus-visible.html">Focus Visible Demo</a></li>
<li><a href="/sandbox/flash.html">Flash Demo</a></li>
<li><a href="/sandbox/fake-live.html">Fake Live Demo</a></li>
<li><a href="/sandbox/embeds.html">Embeds Demo</a></li>
<li><a href="/sandbox/descriptions.html">Descriptions Demo</a></li>
<li><a href="/sandbox/combined-tracks.html">Combined Tracks Demo</a></li>
<li><a href="test/debug.html">Run unit tests in browser.</a></li>
<li><a href="sandbox/index.html">Simple Demo (also seen below)</a></li>
<li><a href="sandbox/plugin.html">Plugin Demo</a></li>
<li><a href="sandbox/responsive.html">Responsive Demo</a></li>
<li><a href="sandbox/middleware-play.html">Middleware Play Demo</a></li>
<li><a href="sandbox/icons.html">Icons Demo</a></li>
<li><a href="sandbox/focus-visible.html">Focus Visible Demo</a></li>
<li><a href="sandbox/flash.html">Flash Demo</a></li>
<li><a href="sandbox/fake-live.html">Fake Live Demo</a></li>
<li><a href="sandbox/embeds.html">Embeds Demo</a></li>
<li><a href="sandbox/descriptions.html">Descriptions Demo</a></li>
<li><a href="sandbox/combined-tracks.html">Combined Tracks Demo</a></li>
</ul>

<h2>Simple Demo (in an iframe)</h2>
<iframe src="/sandbox/index.html" width=700 height=500></iframe>
<iframe src="sandbox/index.html" width=700 height=500></iframe>
</body>
</html>

0 comments on commit dec31e4

Please sign in to comment.