Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexmngn/ember-tabbable


https://github.com/alexmngn/ember-tabbable

Last synced: 16 days ago
JSON representation

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');
}
});
```