0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-09 00:28:20 -05:00
penpot/frontend/uxbox/ui/keyboard.cljs

10 lines
155 B
Text
Raw Normal View History

(ns uxbox.ui.keyboard)
2015-12-14 09:50:19 +02:00
(defn is-keycode?
[keycode]
(fn [e]
(= (.-keyCode e) keycode)))
(def esc? (is-keycode? 27))
(def enter? (is-keycode? 13))