Skip to content

Commit

Permalink
ci css bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
awb99 committed Mar 9, 2024
1 parent 44aec26 commit af972e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@

(defn jar [_]
(b/write-pom opts)
(b/copy-dir {:src-dirs ["src" "resources"]
(b/copy-dir {:src-dirs ["src"
"resources"
"target/node_modules"]
:target-dir class-dir})
(spit-version)
(b/jar {:class-dir class-dir
Expand Down
4 changes: 2 additions & 2 deletions src/ui/highcharts.cljs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
(ns ui.highcharts
"Highchart renderer is a pure javascript renderer, the conversion
of the spec as clj-data to javascript is done in the render-js component
"
of the spec as clj-data to javascript is done in the render-js component"
(:require
;["highcharts" :as highcharts] ; highstock includes highcharts
["highcharts/highstock" :as highcharts] ; this brings highstock and highcharts
Expand Down Expand Up @@ -68,6 +67,7 @@
[render-js (assoc spec :f render-highchart)])

(defn render-highstock [dom-node data]
(ensure-extensions-loaded)
(highcharts/stockChart. dom-node data); //.catch(console.warn);
)

Expand Down

0 comments on commit af972e4

Please sign in to comment.