angular-mousetrap-service
v0.1.0
Published
AngularJS Service for dependency injection of mousetrap.js
Downloads
64
Maintainers
Readme
angular-mousetrap-service
AngularJS Wrapper for mousetrap.js whithout registering it in the global scope.
How to use
Install angular-mousetrap-service.
Using bower:bower install --save angular-mousetrap-service
Or, using npm:npm install --save angular-mousetrap-service
Include angular-mousetrap-service into your project.
<script src="angular-mousetrap-service.min.js"></script>
Add
angular-mousetrap
module in the dependencies of a angular module:angular.module('exampleApp', ['angular-mousetrap'])
Inject the Mousetrap service into a controller, a directive, etc:
.controller('ExampleCtrl', ['$scope','Mousetrap', function($scope, Mousetrap){ Mousetrap.bind('ctrl+s', function() { //... }); }]);
Obs.: See the Demo page for pratical real example.
How to contribute
I am very glad to see this project living with pull requests.
LICENSE
Copyright (c) 2015 Daniel Campos
Licensed under the MIT license.