rename analyze to analyse

This commit is contained in:
Isaac Connor 2022-01-07 16:05:52 -05:00
parent 76fe20c69f
commit 939f165b22
1 changed files with 6 additions and 6 deletions

View File

@ -276,10 +276,10 @@ function MonitorStream(monitorData) {
.fail(this.onFailure.bind(this));
};
}
this.analyze_frames = true;
this.show_analyze_frames = function(toggle) {
this.analyze_frames = toggle;
console.log("Sending command " + (this.analyze_frames?CMD_ANALYZE_ON:CMD_ANALYZE_OFF));
this.streamCmdReq.send(this.streamCmdParms+"&command="+(this.analyze_frames?CMD_ANALYZE_ON:CMD_ANALYZE_OFF));
}
this.analyse_frames = true;
this.show_analyse_frames = function(toggle) {
this.analyse_frames = toggle;
this.streamCmdParms.command = this.analyse_frames?CMD_ANALYZE_ON:CMD_ANALYZE_OFF;
this.streamCmdReq(this.streamCmdParms);
};
} // end function MonitorStream