mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-31 16:32:28 +01:00
Add missing semicolons.
This commit is contained in:
@@ -52,12 +52,12 @@ function Controller(controller) {
|
||||
|
||||
this._countBeep = () => {
|
||||
this.beepCount++;
|
||||
}
|
||||
};
|
||||
this.errors = [];
|
||||
this._countError = (message, highlight) => {
|
||||
if (/\b(Error|Warning)Msg\b/.test(highlight))
|
||||
this.errors.push(String(message));
|
||||
}
|
||||
};
|
||||
this.modules.dactyl.registerObserver("beep", this._countBeep);
|
||||
this.modules.dactyl.registerObserver("echoLine", this._countError);
|
||||
this.modules.dactyl.registerObserver("echoMultiline", this._countError);
|
||||
|
||||
Reference in New Issue
Block a user