0.1.3 • Published 8 years ago

ember-tabbable v0.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Ember-tabbable Build Status

This is a simple Ember-CLI addon which provide the uses the ':tabbable' and ':focusable' selectors from jQuery UI Core.

Installation

ember install ember-tabbable

Usage

You will be able to use the selectors :tabbable and :focusable directly in your project.

import Ember from 'ember';

export default Component.extend({
    didInsertElement() {
        const tabbableElements = this.$(':tabbable');
        const focusableElements = this.$(':focusable');
    }
});