Merge branch 'master' into ben/focus-indication

This commit is contained in:
Benjamin Pasero
2016-01-19 09:57:37 +01:00
14 changed files with 394 additions and 353 deletions

View File

@@ -64,6 +64,9 @@ export class FindInput extends Widget {
private _onKeyDown = this._register(new Emitter<StandardKeyboardEvent>());
public onKeyDown: Event<StandardKeyboardEvent> = this._onKeyDown.event;
private _onInput = this._register(new Emitter<void>());
public onInput: Event<void> = this._onInput.event;
private _onKeyUp = this._register(new Emitter<StandardKeyboardEvent>());
public onKeyUp: Event<StandardKeyboardEvent> = this._onKeyUp.event;
@@ -92,6 +95,7 @@ export class FindInput extends Widget {
this.onkeydown(this.inputBox.inputElement, (e) => this._onKeyDown.fire(e));
this.onkeyup(this.inputBox.inputElement, (e) => this._onKeyUp.fire(e));
this.oninput(this.inputBox.inputElement, (e) => this._onInput.fire());
}
public enable(): void {