🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

angular-mousetrap-service

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-mousetrap-service

AngularJS Service for dependency injection of mousetrap.js

0.1.0
latest
Source
npm
Version published
Weekly downloads
6
-45.45%
Maintainers
1
Weekly downloads
 
Created
Source

Bower version

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.

Keywords

mousetrap

FAQs

Package last updated on 29 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts