Skip to content

Commit

Permalink
Merge pull request #10200 from jedmao/autocomplete
Browse files Browse the repository at this point in the history
[FEATURE] Add 'autocomplete' to Ember.Select view
  • Loading branch information
wagenet committed Feb 28, 2015
2 parents ce37dbe + 2e883d1 commit d708701
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions packages/ember-views/lib/views/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,17 @@ var Select = View.extend({
tagName: 'select',
classNames: ['ember-select'],
defaultTemplate: defaultTemplate,
attributeBindings: ['multiple', 'disabled', 'tabindex', 'name', 'required', 'autofocus',
'form', 'size'],
attributeBindings: [
'autofocus',
'autocomplete',
'disabled',
'form',
'multiple',
'name',
'required',
'size',
'tabindex'
],

/**
The `multiple` attribute of the select element. Indicates whether multiple
Expand Down

0 comments on commit d708701

Please sign in to comment.