mirror of
https://github.com/penpot/penpot.git
synced 2025-02-02 12:28:54 -05: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))
|