@abcum/ember-hotkeydeprecated

An Ember.js component for reacting to keyboard events.

Usage no npm install needed!

<script type="module">
  import abcumEmberHotkey from 'https://cdn.skypack.dev/@abcum/ember-hotkey';
</script>

README

ember-hotkey

An Ember.js component for reacting to keyboard events.

Usage

Installation

ember install @abcum/ember-hotkey

General usage

The key attribute defines which keyboard key must be pressed to activate the callback.

{{hot-key key="s" meta=true on-press=(action 'save')}} {{!-- cmd+s --}}

The modifier attributes alt, meta, ctrl, shift can be can be used to enable advanced key combinations.

{{hot-key key="v" ctrl=true on-press=(action 'paste')}} {{!-- ctrl+v --}}

Add multiple modifiers to specify combinations of keys which need to be pressed together in order to activate the callback.

{{hot-key key="3" meta=true shift=true on-press=(action 'screenshot')}} {{!-- cmd+shift+3 --}}

Development

  • make install (install bower and ember-cli dependencies)
  • make upgrade (upgrade ember-cli to the specified version)
  • make tests (run all tests defined in the package)