summaryrefslogtreecommitdiff
path: root/lisp/webapps/resume
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-08-12 21:57:18 -0600
committerckonstanski <kostcarl@isu.edu>2026-08-12 21:57:18 -0600
commit3e2e94afb69b6bc6213b58daa36f350205b5086c (patch)
tree738c9f7716d9fa468a20239951e848a0eece1bc0 /lisp/webapps/resume
parent3fc2a2340389b4645991650595ce2ab532caa55d (diff)
remove unneeded hiccups
Diffstat (limited to 'lisp/webapps/resume')
-rw-r--r--lisp/webapps/resume/clojurescript/resume/src/resume/core.cljs8
1 files changed, 1 insertions, 7 deletions
diff --git a/lisp/webapps/resume/clojurescript/resume/src/resume/core.cljs b/lisp/webapps/resume/clojurescript/resume/src/resume/core.cljs
index bbc54cc..1551957 100644
--- a/lisp/webapps/resume/clojurescript/resume/src/resume/core.cljs
+++ b/lisp/webapps/resume/clojurescript/resume/src/resume/core.cljs
@@ -1,9 +1,7 @@
(ns resume.core
- (:require-macros [hiccups.core :as hiccups :refer [html]]
- [resume.core :refer [define-resume-component]])
+ (:require-macros [resume.core :refer [define-resume-component]])
(:require [ajax.core :refer [GET POST PUT DELETE raw-response-format]]
[dommy.core :as dommy]
- [hiccups.runtime :as hiccupsrt]
[cljsjs.showdown :as showdown]
[clojure.string :as str]
[cljs-time.format :as time-format]
@@ -40,7 +38,6 @@
(declare markdown-to-html)
(declare reduce-checkboxes)
(declare form-fields-to-map)
-(declare generic-component-add-modify)
(declare highlight-row)
(declare comp-app)
(declare start-render)
@@ -287,9 +284,6 @@
:when (not (empty? (.-name x)))]
{(str/replace (.-name x) (str form-name "-") "") (.-value x)}))))
-(hiccups/defhtml generic-component-add-modify [jsonobj]
- [:div {:dangerouslySetInnerHTML (r/unsafe-html (ck-form/template-generic-form (get jsonobj "form") (namespace ::x)))}])
-
;; notifications
(defn notifications [jsonobj]