From 0d46c5bac7b08e7547532824080fad1c55843d41 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 30 Jan 2017 17:51:58 +0100 Subject: [PATCH] Properly render image shapes on viewer. --- frontend/src/uxbox/view/ui/viewer/shapes.cljs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/uxbox/view/ui/viewer/shapes.cljs b/frontend/src/uxbox/view/ui/viewer/shapes.cljs index e4806424a..fc023d5d1 100644 --- a/frontend/src/uxbox/view/ui/viewer/shapes.cljs +++ b/frontend/src/uxbox/view/ui/viewer/shapes.cljs @@ -18,7 +18,7 @@ [uxbox.main.ui.shapes.group :refer [group-shape]] [uxbox.main.ui.shapes.path :refer [path-shape]] [uxbox.main.ui.shapes.circle :refer [circle-shape]] - [uxbox.main.ui.shapes.image :refer [image-shape image-ref]] + [uxbox.main.ui.shapes.image :refer [image-shape]] [uxbox.util.mixins :as mx :include-macros true]) (:import goog.events.EventType)) @@ -26,6 +26,11 @@ (-> (comp (l/key :flags) (l/lens :interactions)) (l/derive st/state))) +(defn image-ref + [id] + (-> (l/in [:images id]) + (l/derive st/state))) + ;; --- Interactions Wrapper (defn- interactions-wrapper-did-mount