We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c311bc commit c304861Copy full SHA for c304861
frontend/index.html
@@ -56,7 +56,11 @@
56
</head>
57
<body>
58
<div id="container">
59
- <textarea id="input" placeholder="Enter your input here..."></textarea>
+ <textarea
60
+ id="input"
61
+ readonly
62
+ placeholder="Loading wasm module..."
63
+ ></textarea>
64
<textarea
65
id="output"
66
readonly
@@ -69,6 +73,9 @@
69
73
<script type="module">
70
74
import { pandoc } from "./index.js";
71
75
76
+ document.getElementById("input").readOnly = false;
77
+ document.getElementById("input").placeholder = "Enter your input here...";
78
+
72
79
async function updateOutput() {
80
const inputText = document.getElementById("input").value;
81
const argumentsText = document.getElementById("arguments").value;
0 commit comments