mirror of
https://github.com/metosin/reitit.git
synced 2025-12-18 08:51:12 +00:00
Fix indent
This commit is contained in:
parent
cbff7d10bf
commit
1e5fe74c29
1 changed files with 4 additions and 4 deletions
|
|
@ -54,10 +54,10 @@
|
||||||
;; for XML or XHTML it would be in the original case.
|
;; for XML or XHTML it would be in the original case.
|
||||||
(let [tag (.toUpperCase tag)]
|
(let [tag (.toUpperCase tag)]
|
||||||
(loop [el el]
|
(loop [el el]
|
||||||
(if el
|
(if el
|
||||||
(if (= tag (.-nodeName el))
|
(if (= tag (.-nodeName el))
|
||||||
el
|
el
|
||||||
(recur (.-parentNode el)))))))
|
(recur (.-parentNode el)))))))
|
||||||
|
|
||||||
(defrecord Html5History [on-navigate router listen-key click-listen-key]
|
(defrecord Html5History [on-navigate router listen-key click-listen-key]
|
||||||
History
|
History
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue