Giter VIP home page Giter VIP logo

ember-shortcuts's Introduction

Ember Shortcuts

Inspiration

keymaster. This library could not exists without it, and is, in fact, an adaptation of it that integrates cleanly with Ember.

Installation

Get the code:

bower install ember-shortcuts

Include it on your page somewhere after ember.js.

Usage

In any route:

Ember.Route.Extend({
  shortcuts: {
    'shift+a': 'someAction'
  },

  actions: {
    someAction: function() {
      console.log('someAction');
    }
  }
});

Like actions, shortcuts get dispatch bottom-up through the currently active routes.

Unlike actions, the shortcut handling does not bubble. In the example above, if a child of that route defined a shift+a: 'otherAction' handler and was active when the shortcut was pressed, the action otherAction would get sent instead of someAction.

Injection

Ember.Shortcuts, once includes, is available to you as an injected singleton on your controllers and routes as the shortcuts property.

this.shortcuts.disable this.shortcuts.enable

Call this to toggle whether or not the global keyboard shortcut handlers will fire.

ember-shortcuts's People

Contributors

satchmorun avatar westlywright avatar novaugust avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.