README
ember-cli {{select-menu}} 
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 clonethis repositorynpm installbower install
Running
ember server- Visit your app at http://localhost:4200.
Running Tests
ember testember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.