Skip to content

Commit

Permalink
[FEATURE select-autocomplete] Add 'autocomplete' to Select view's att…
Browse files Browse the repository at this point in the history
…ributeBindings
  • Loading branch information
jednano committed Jan 13, 2015
1 parent fdbafbc commit 2e883d1
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 @@ -338,8 +338,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 2e883d1

Please sign in to comment.