Schedule to the next context the message side effect.

This commit is contained in:
Andrey Antukh 2016-05-15 22:59:58 +03:00
parent c57e3f2a68
commit e0ba0fd41f
No known key found for this signature in database
GPG Key ID: 4DFEBCB8316A8B95

View File

@ -88,15 +88,15 @@
(defn error! (defn error!
[& args] [& args]
(rs/emit! (apply show-error args))) (p/schedule 0 #(rs/emit! (apply show-error args))))
(defn info! (defn info!
[& args] [& args]
(rs/emit! (apply show-info args))) (p/schedule 0 #(rs/emit! (apply show-info args))))
(defn dialog! (defn dialog!
[& args] [& args]
(rs/emit! (apply show-dialog args))) (p/schedule 0 #(rs/emit! (apply show-dialog args))))
(defn close! (defn close!
[] []