Skip to content

Commit dec31e4

Browse files
authored
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.
1 parent 209d9f9 commit dec31e4

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

index.html

+13-13
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
77
<body>
88
<h2>Navigation</h2>
99
<ul>
10-
<li><a href="/test/debug.html">Run unit tests in browser.</a></li>
11-
<li><a href="/sandbox/index.html">Simple Demo (also seen below)</a></li>
12-
<li><a href="/sandbox/plugin.html">Plugin Demo</a></li>
13-
<li><a href="/sandbox/responsive.html">Responsive Demo</a></li>
14-
<li><a href="/sandbox/middleware-play.html">Middleware Play Demo</a></li>
15-
<li><a href="/sandbox/icons.html">Icons Demo</a></li>
16-
<li><a href="/sandbox/focus-visible.html">Focus Visible Demo</a></li>
17-
<li><a href="/sandbox/flash.html">Flash Demo</a></li>
18-
<li><a href="/sandbox/fake-live.html">Fake Live Demo</a></li>
19-
<li><a href="/sandbox/embeds.html">Embeds Demo</a></li>
20-
<li><a href="/sandbox/descriptions.html">Descriptions Demo</a></li>
21-
<li><a href="/sandbox/combined-tracks.html">Combined Tracks Demo</a></li>
10+
<li><a href="test/debug.html">Run unit tests in browser.</a></li>
11+
<li><a href="sandbox/index.html">Simple Demo (also seen below)</a></li>
12+
<li><a href="sandbox/plugin.html">Plugin Demo</a></li>
13+
<li><a href="sandbox/responsive.html">Responsive Demo</a></li>
14+
<li><a href="sandbox/middleware-play.html">Middleware Play Demo</a></li>
15+
<li><a href="sandbox/icons.html">Icons Demo</a></li>
16+
<li><a href="sandbox/focus-visible.html">Focus Visible Demo</a></li>
17+
<li><a href="sandbox/flash.html">Flash Demo</a></li>
18+
<li><a href="sandbox/fake-live.html">Fake Live Demo</a></li>
19+
<li><a href="sandbox/embeds.html">Embeds Demo</a></li>
20+
<li><a href="sandbox/descriptions.html">Descriptions Demo</a></li>
21+
<li><a href="sandbox/combined-tracks.html">Combined Tracks Demo</a></li>
2222
</ul>
2323

2424
<h2>Simple Demo (in an iframe)</h2>
25-
<iframe src="/sandbox/index.html" width=700 height=500></iframe>
25+
<iframe src="sandbox/index.html" width=700 height=500></iframe>
2626
</body>
2727
</html>

0 commit comments

Comments
 (0)