Skip to content
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.

Changed keydown listener in removeListeners() #180

Merged
merged 4 commits into from
Nov 22, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/CheckBox/CheckBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace fabric {
this._choiceField.removeEventListener("focus", this._FocusHandler.bind(this));
this._choiceField.removeEventListener("blur", this._BlurHandler.bind(this));
this._choiceField.removeEventListener("click", this._ClickHandler.bind(this));
this._choiceField.addEventListener("keydown", this._KeydownHandler.bind(this));
this._choiceField.removeEventListener("keydown", this._KeydownHandler.bind(this));
}

protected _addListeners(events?): void {
Expand Down