Browse Source

Setup jQuery

main
Nicolas Fritz 2 years ago
parent
commit
54a21f6bcb
  1. 4
      plugins.js
  2. 8
      uno/index.html
  3. 1
      uno/web/Style.js

4
plugins.js
File diff suppressed because it is too large
View File

8
uno/index.html

@ -5,7 +5,11 @@
<title>Uno</title> <title>Uno</title>
</head> </head>
<body> <body>
<script type="module" src="node/js/Game.js"></script>
<script type="module" src="node/js/uno.js"></script>
<div id="debug">
<p id="spieler"></p>
</div>
<script src="../plugins.js"></script>
<script src="web/Style.js"></script>
</body> </body>
</html> </html>

1
uno/web/Style.js

@ -0,0 +1 @@
$("#spieler").html("Spieler: ");
Loading…
Cancel
Save