mirror of
https://github.com/penpot/penpot.git
synced 2025-05-05 14:35:53 +02:00
9 lines
124 B
Clojure
9 lines
124 B
Clojure
(ns uxbox.ui.dom)
|
|
|
|
(defn stop-propagation
|
|
[e]
|
|
(.stopPropagation e))
|
|
|
|
(defn prevent-default
|
|
[e]
|
|
(.preventDefault e))
|