Skip to content

Commit

Permalink
build for 0.1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
simonfox committed Jul 16, 2015
1 parent 768620d commit 0fdcc97
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/amd/autocomplete-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ define(['exports', 'aurelia-framework', 'jquery', 'devbridge/jQuery-Autocomplete
}, {
key: 'apply',
value: function apply() {
(0, _$['default'])(this.element).autocomplete({
(0, _$['default'])(this.element).find('input').autocomplete({
lookup: this.lookup.bind(this),
onSelect: this.onSelect.bind(this)
});
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/autocomplete-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var AutoCompleteWidget = (function () {
}, {
key: 'apply',
value: function apply() {
(0, _jquery2['default'])(this.element).autocomplete({
(0, _jquery2['default'])(this.element).find('input').autocomplete({
lookup: this.lookup.bind(this),
onSelect: this.onSelect.bind(this)
});
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/autocomplete-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class AutoCompleteWidget {
}

apply() {
$(this.element).autocomplete({
$(this.element).find('input').autocomplete({
lookup: this.lookup.bind(this),
onSelect: this.onSelect.bind(this)
});
Expand Down
2 changes: 1 addition & 1 deletion dist/system/autocomplete-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ System.register(['aurelia-framework', 'jquery', 'devbridge/jQuery-Autocomplete']
}, {
key: 'apply',
value: function apply() {
$(this.element).autocomplete({
$(this.element).find('input').autocomplete({
lookup: this.lookup.bind(this),
onSelect: this.onSelect.bind(this)
});
Expand Down
2 changes: 1 addition & 1 deletion src/autocomplete-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class AutoCompleteWidget {
}

apply() {
$(this.element).autocomplete({
$(this.element).find('input').autocomplete({
lookup: this.lookup.bind(this),
onSelect: this.onSelect.bind(this)
});
Expand Down

0 comments on commit 0fdcc97

Please sign in to comment.