mirror of
https://github.com/penpot/penpot.git
synced 2026-05-11 11:03:52 +00:00
10 lines
124 B
Clojure
10 lines
124 B
Clojure
(ns uxbox.ui.dom)
|
|
|
|
(defn stop-propagation
|
|
[e]
|
|
(.stopPropagation e))
|
|
|
|
(defn prevent-default
|
|
[e]
|
|
(.preventDefault e))
|