mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
10 lines
124 B
Text
10 lines
124 B
Text
|
(ns uxbox.ui.dom)
|
||
|
|
||
|
(defn stop-propagation
|
||
|
[e]
|
||
|
(.stopPropagation e))
|
||
|
|
||
|
(defn prevent-default
|
||
|
[e]
|
||
|
(.preventDefault e))
|