Mousetrap Versions Save

Simple library for handling keyboard shortcuts in Javascript

1.6.5

4 years ago
  • Actually fixed bind global plugin in node environment (#470)

1.6.4

4 years ago
  • Fixed bind global plugin in node js environments (#465)

1.6.3

5 years ago
  • Fixed issue where callbacks were incorrectly fired from input fields in shadow DOM (#245)
  • Updated tests to run using npm dependencies

1.6.2

5 years ago
  • Updated version to publish new License to NPM

1.6.1

7 years ago
  • Fixed issue where mousetrap did not work with numpad 0 key

1.6.0

7 years ago
  • Updated to not fail when included in server side environments
  • Added Mousetrap.addKeycodes method for adding custom keyCodes not defined in the existing map

1.5.3

8 years ago
  • Fixes issue with _belongsTo when using web components

1.5.2

9 years ago
  • Fixes broken AMD support introduced in version 1.5.0

1.5.1

9 years ago

Two quick things

  • Defaults target element to document if you just call new Mousetrap() on its own
  • Checks against document first in the _belongsTo function to improve performance

1.5.0

9 years ago

This release is long overdue. It brings a bunch of stuff.

  • Adds support for creating multiple instances of Mousetrap

  • Adds support for binding Mousetrap events to specific elements on the page (for example forms or form fields)

    For more information see http://craig.is/killing/mice#wrapping

  • Adds support for using Mousetrap as a common js module

  • Improves handling of + key in keyboard commands. Also adds an alias to reference + as plus to avoid confusion

  • General code formatting clean up

One note about backwards compatibility

If you are using any of the plugins in the plugins directory and you update to Mousetrap 1.5.0 they will break. You have to install the new versions of the plugins. This is because all the public functions are now bound to the Mousetrap prototype instead of being attached to the global object.