Rework todomvc history

This commit is contained in:
mike-thompson-day8 2015-03-07 21:36:17 +11:00
parent c50f88caf0
commit ec0b383ed3
1 changed files with 6 additions and 7 deletions

View File

@ -13,17 +13,16 @@
(enable-console-print!)
;; -- Routing -----------------------------------------------------------------
;; -- Routes and History ------------------------------------------------------
(defroute "/" [] (dispatch [:set-showing :all]))
(defroute "/:filter" [filter] (dispatch [:set-showing (keyword filter)]))
(def history (History.))
(events/listen history EventType.NAVIGATE
(fn [e] (secretary/dispatch! (.-token e))))
(.setEnabled history true)
(def history
(doto (History.)
(events/listen EventType.NAVIGATE
(fn [event] (secretary/dispatch! (.-token event))))
(.setEnabled true)))
;; -- Entry Point -------------------------------------------------------------