remove unused gh-select-native template (#297)

no issue
- removes template that was missed in #286
This commit is contained in:
Austin Burdine 2016-10-01 03:10:21 -05:00 committed by Kevin Ansfield
parent 0a163d7333
commit 772d1faf5f
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
<select {{action "change" on="change"}}>
{{#if prompt}}
<option disabled selected={{is-not selection}}>
{{prompt}}
</option>
{{/if}}
{{#each content as |item|}}
<option value="{{get item optionValuePath}}"
selected={{is-equal item selection}}>
{{get item optionLabelPath}}
</option>
{{/each}}
</select>