We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c85a0 commit f029cb8Copy full SHA for f029cb8
1 file changed
src/js/app.js
@@ -34,17 +34,17 @@ function init() {
34
"docs",
35
`${assetHost}${mixManifest["/docs/index.st"] ?? "/docs/index.st"}`,
36
);
37
+
38
+ let textarea = document.getElementById("text_area");
39
+ if (textarea != null) {
40
+ pasteImage(textarea);
41
+ }
42
}
43
44
let stork_container = document.querySelector("input[data-stork='docs']");
45
if (stork_container != null) {
46
stork.attach("docs");
47
-
- let textarea = document.getElementById("text_area");
- if (textarea != null) {
- pasteImage(textarea);
- }
48
49
50
htmx.onLoad(init);
0 commit comments