mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 23:18:48 -05:00
Remove unused println's.
This commit is contained in:
parent
aac3b05a9b
commit
845726827e
7 changed files with 0 additions and 8 deletions
|
@ -28,7 +28,6 @@
|
|||
(deftype WatchPageChanges [id]
|
||||
ptk/WatchEvent
|
||||
(watch [_ state stream]
|
||||
(println "history:watch-page-changes" id)
|
||||
(let [stopper (->> stream
|
||||
(rx/filter #(= % ::udp/stop-page-watcher))
|
||||
(rx/take 1))]
|
||||
|
|
|
@ -64,8 +64,6 @@
|
|||
;; Activate loaded if page is not fetched.
|
||||
(when-not page (reset! st/loader true))
|
||||
|
||||
(println "initialize")
|
||||
|
||||
(rx/merge
|
||||
(if page
|
||||
(rx/of (initialize-alignment page-id))
|
||||
|
|
|
@ -248,7 +248,6 @@
|
|||
(on-toggle-move [event]
|
||||
(swap! local update :show-move-tooltip not))
|
||||
(on-copy [selected]
|
||||
(println "copy from" id "to" selected)
|
||||
(swap! local assoc
|
||||
:show-move-tooltip false
|
||||
:show-copy-tooltip false)
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
profile? (= section :settings/profile)
|
||||
password? (= section :settings/password)
|
||||
notifications? (= section :settings/notifications)]
|
||||
(println "header-render" section)
|
||||
(html
|
||||
[:header#main-bar.main-bar
|
||||
[:div.main-logo
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
(defn- will-mount
|
||||
[own]
|
||||
(let [{:keys [image]} (first (:rum/args own))]
|
||||
(println (:rum/args own))
|
||||
(st/emit! (udi/fetch-image image))
|
||||
own))
|
||||
|
||||
|
|
|
@ -73,5 +73,4 @@
|
|||
|
||||
(defmethod lbx/render-lightbox :workspace/page-colorpicker
|
||||
[params]
|
||||
(println "kakakaka")
|
||||
(page-colorpicker params))
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
(udp/update-metadata id)
|
||||
(st/emit!))))
|
||||
(show-color-picker [event]
|
||||
(println "show-color-picker")
|
||||
(let [x (.-clientX event)
|
||||
y (.-clientY event)
|
||||
opts {:x x :y y
|
||||
|
|
Loading…
Add table
Reference in a new issue