summaryrefslogtreecommitdiff
path: root/static/js/client.js
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-21 12:12:52 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-21 12:12:52 -0600
commitd5d73505832bb39cf8e7fa5a49ff8e3d56690d71 (patch)
treefd562db4c6872ffc65b27e4be712c162015d621a /static/js/client.js
parent11799b5bb5cac1fb53ea676337e679c94d3bc3e8 (diff)
Add reply form rendering
Diffstat (limited to 'static/js/client.js')
-rw-r--r--static/js/client.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/static/js/client.js b/static/js/client.js
index 997d50d..ae11fe1 100644
--- a/static/js/client.js
+++ b/static/js/client.js
@@ -1,4 +1,6 @@
import { CommentsController } from "./controllers/comments_controller.js";
+import { RepliesController } from "./controllers/replies_controller.js";
-new CommentsController();
+const replies_controller = new RepliesController();
+new CommentsController(replies_controller);