fix(searchbar): emit the input event on input changed

This commit is contained in:
Brandy Carney
2017-07-27 15:02:59 -04:00
parent d62acf0235
commit 291125c4b1

View File

@ -183,7 +183,8 @@ export class Searchbar {
inputChanged(ev: any) {
this.value = ev.target.value;
// this._inputDebouncer.debounce(() => {
// this.ionInput.emit(ev);
// TODO fix to be inside debounce
this.ionInput.emit(ev);
// });
}