Skip to content

Commit

Permalink
Fix regressions caused during manual inlining of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
superstructor committed Apr 7, 2020
1 parent 40e7e7d commit 7911d3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
(defn purge-event-queue
"Remove all events queued for processing"
[]
(router/purge re-frame.router/event-queue))
(router/purge router/event-queue))

;; -- Event Processing Callbacks ---------------------------------------------

Expand All @@ -216,12 +216,12 @@
([f]
(add-post-event-callback f f)) ;; use f as its own identifier
([id f]
(router/add-post-event-callback re-frame.router/event-queue id f)))
(router/add-post-event-callback router/event-queue id f)))


(defn remove-post-event-callback
[id]
(router/remove-post-event-callback re-frame.router/event-queue id))
(router/remove-post-event-callback router/event-queue id))


;; -- Deprecation ------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(reagent/atom x))

(defn ratom? [x]
(satisfies? reagent.ratom/IReactiveAtom x))
(satisfies? ratom/IReactiveAtom x))

(defn deref? [x]
(satisfies? IDeref x))
Expand Down

0 comments on commit 7911d3b

Please sign in to comment.