Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexmngn/ember-tabbable
https://github.com/alexmngn/ember-tabbable
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexmngn/ember-tabbable
- Owner: alexmngn
- License: mit
- Created: 2015-09-21T16:04:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-02T06:52:06.000Z (about 5 years ago)
- Last Synced: 2024-08-09T21:27:58.670Z (5 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ember-tabbable [![Build Status](https://travis-ci.org/4lex-io/ember-tabbable.png?branch=master)](https://travis-ci.org/4lex-io/ember-tabbable)
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');
}
});
```