Fixed a small derp in demo

This commit is contained in:
kake26 2022-02-17 22:11:32 -06:00
parent b6d18639ca
commit 43d9924e64

View file

@ -1,13 +1,13 @@
<html> <html>
<head> <head>
...
<link rel="stylesheet" type="text/css" href="/player/asciinema-player.css" /> <link rel="stylesheet" type="text/css" href="player/asciinema-player.css" />
</head> </head>
<body> <body>
<div id="demo"></div> <div id="demo"></div>
<script src="/player/asciinema-player.min.js"></script> <script src="player/asciinema-player.min.js"></script>
<script> <script>
AsciinemaPlayer.create('/casts/demo.cast', document.getElementById('demo')); AsciinemaPlayer.create('casts/demo.cast', document.getElementById('demo'));
</script> </script>
</body> </body>
</html> </html>