JSPM

ember-tabbable

0.1.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q38492F
  • License MIT

Includes ':tabbable' and ':focusable' selectors from jQuery UI Core

Package Exports

  • ember-tabbable

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ember-tabbable) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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