Skip to content

paddle8/ember-select-menu

 
 

Repository files navigation

ember-cli {{select-menu}} Build Status

A simplified interface for custom select widgets. The handlebars is straightforward and easy to read:

<label for="country">Where are you from?</label>
{{#select-menu id="country" prompt="Select a country" value=country search-by="label code"}}
  {{#each it in countries}}
    {{select-option value=it label=it.name code=it.code}}
  {{/each}}
{{/select-menu}}

This addon comes with baked in WAI-ARIA support for screen readers, keyboard navigation and keyboard search.

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

About

A customizeable select widget for ember-cli projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.1%
  • HTML 3.9%
  • Handlebars 2.9%
  • CSS 0.1%