Skip to content

Commit

Permalink
Fix code errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lulunac27a committed Feb 26, 2024
1 parent 01449cb commit 0635ff7
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions text-counter.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Text Counter Application in Scala.js</title>
</head>
<body>
<h1>Text Counter Application in Scala.js</h1>
<textarea class="textContent" rows="10" cols="80"></textarea>
<button id="updateText">Update Text Counter Output</button>
<div id="textOutput"></div>
<script src="./target/scala-2.13/text-counter-application-in-scala-js-fastopt/main.js"></script>
</body>
</html>
<head>
<meta charset="utf-8" />
<title>Text Counter Application in Scala.js</title>
</head>
<body>
<h1>Text Counter Application in Scala.js</h1>
<br />
<textarea id="textContent" rows="10" cols="80"></textarea>
<br />
<button id="updateText">Update Text Counter Output</button>
<br />
<div id="textOutput"></div>
<br />
<script src="./target/scala-2.13/text-counter-application-in-scala-js-fastopt/main.js"></script>
</body>
</html>

0 comments on commit 0635ff7

Please sign in to comment.