From 996eda62ceabce01c3a5387b4f9d7e5c8bc9f4f4 Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Thu, 28 Jul 2016 19:00:17 +1000 Subject: [PATCH] alpha9 - fix another bug --- project.clj | 2 +- src/re_frame/router.cljc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 6dc4e55..2c7da22 100644 --- a/project.clj +++ b/project.clj @@ -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"} diff --git a/src/re_frame/router.cljc b/src/re_frame/router.cljc index aded8cc..3408962 100644 --- a/src/re_frame/router.cljc +++ b/src/re_frame/router.cljc @@ -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