Fix indent

This commit is contained in:
Juho Teperi 2019-02-08 14:47:05 +02:00
parent cbff7d10bf
commit 1e5fe74c29

View file

@ -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