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 424f580 commit 768620d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/amd/autocomplete-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ define(['exports', 'aurelia-framework', 'jquery', 'devbridge/jQuery-Autocomplete
}, {
key: 'unbind',
value: function unbind() {
(0, _$['default'])(this.element).autocomplete('dispose');
(0, _$['default'])(this.element).find('input').autocomplete('dispose');
}
}, {
key: 'apply',
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 @@ -35,7 +35,7 @@ var AutoCompleteWidget = (function () {
}, {
key: 'unbind',
value: function unbind() {
(0, _jquery2['default'])(this.element).autocomplete('dispose');
(0, _jquery2['default'])(this.element).find('input').autocomplete('dispose');
}
}, {
key: 'apply',
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 @@ -25,7 +25,7 @@ export class AutoCompleteWidget {
}

unbind() {
$(this.element).autocomplete('dispose');
$(this.element).find('input').autocomplete('dispose');
}

apply() {
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 @@ -34,7 +34,7 @@ System.register(['aurelia-framework', 'jquery', 'devbridge/jQuery-Autocomplete']
}, {
key: 'unbind',
value: function unbind() {
$(this.element).autocomplete('dispose');
$(this.element).find('input').autocomplete('dispose');
}
}, {
key: 'apply',
Expand Down

0 comments on commit 768620d

Please sign in to comment.