Skip to content
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.

Commit

Permalink
fix: make clearKeyboardTimeout private
Browse files Browse the repository at this point in the history
  • Loading branch information
osdnk committed Oct 25, 2019
1 parent f33e839 commit 09af1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/KeyboardManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class KeyboardManager extends React.Component<Props> {
private startTimestamp: number = 0;
private keyboardTimeout: NodeJS.Timeout | undefined;

clearKeyboardTimeout = () => {
private clearKeyboardTimeout = () => {
if (this.keyboardTimeout !== undefined) {
clearTimeout(this.keyboardTimeout);
this.keyboardTimeout = undefined;
Expand Down

0 comments on commit 09af1cf

Please sign in to comment.