From b6900584f7ad62367043460fee5a5f27d2aed1b3 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 7 Jan 2016 17:47:55 +0200 Subject: [PATCH] Remove debug println on shapes and canvas. --- frontend/uxbox/ui/workspace/canvas.cljs | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/uxbox/ui/workspace/canvas.cljs b/frontend/uxbox/ui/workspace/canvas.cljs index 5ded2eff4..e8d09e7c1 100644 --- a/frontend/uxbox/ui/workspace/canvas.cljs +++ b/frontend/uxbox/ui/workspace/canvas.cljs @@ -130,7 +130,6 @@ [own shape selected] (let [{:keys [id x y width height] :as shape} shape selected? (contains? selected id)] - (println "shape-render" id) (letfn [(on-mouse-down [event] (let [local (:rum/local own)] (dom/stop-propagation event) @@ -212,7 +211,6 @@ (defn- canvas-render [own {:keys [width height id] :as page}] - (println "canvas-render" id) (let [workspace (rum/react wb/workspace-state) shapes-by-id (rum/react shapes-by-id) workspace-selected (:selected workspace)