alpha9 - fix another bug

This commit is contained in:
Mike Thompson 2016-07-28 19:00:17 +10:00
parent 788ba0850b
commit 996eda62ce
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
(defproject re-frame "0.8.0-alpha9-SNAPSHOT"
(defproject re-frame "0.8.0-alpha9"
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Reagent."
:url "https://github.com/Day8/re-frame.git"
:license {:name "MIT"}

View File

@ -199,7 +199,7 @@
(-call-post-event-callbacks
[_ event-v]
;; Call each registed post-event callback.
(doseq [callback post-event-callback-fns]
(doseq [callback (vals post-event-callback-fns)]
(callback event-v queue)))
(-resume