0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-16 01:31:22 -05:00

Remove useless println's.

This commit is contained in:
Andrey Antukh 2016-03-15 21:01:07 +02:00
parent 3b2078ac56
commit 2742a7a4ec

View file

@ -42,12 +42,10 @@
(defn- handlers-render
[own shape]
(letfn [(on-mouse-down [vid event]
(println "on-mouse-down" vid)
(dom/stop-propagation event)
(uuc/acquire-action! :resize/shape {:vid vid :shape (:id shape)}))
(on-mouse-up [vid event]
(println "on-mouse-up" vid)
(dom/stop-propagation event)
(uuc/release-action! :resize/shape))]
(let [{:keys [x y width height]} (ush/outer-rect' shape)]