~emersion/gamja

62300746d34913d730a2e6c47f78466355e7b02e — Simon Ser 4 years ago f9972da vanilla
Remove assets/
5 files changed, 4 insertions(+), 4 deletions(-)

M index.html
R assets/index.js => index.js
R assets/client.js => lib/client.js
R assets/irc.js => lib/irc.js
R assets/style.css => style.css
M index.html => index.html +2 -2
@@ 3,7 3,7 @@
	<head>
		<meta charset="utf-8">
		<title>IRC client</title>
		<link rel="stylesheet" href="assets/style.css">
		<link rel="stylesheet" href="style.css">
	</head>
	<body>
		<section id="sidebar">


@@ 71,7 71,7 @@
		</section>

		<script type="module">
			import "./assets/index.js";
			import "./index.js";
		</script>
	</body>
</html>

R assets/index.js => index.js +2 -2
@@ 1,5 1,5 @@
import * as irc from "./irc.js";
import Client from "./client.js";
import * as irc from "./lib/irc.js";
import Client from "./lib/client.js";

var server = {
	name: "server",

R assets/client.js => lib/client.js +0 -0
R assets/irc.js => lib/irc.js +0 -0
R assets/style.css => style.css +0 -0