Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Connor committed Oct 15, 2024
1 parent 038bf5c commit c2fe3ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ web/js/videojs.zoomrotate.js
web/js/fontfaceobserver.standalone.js
web/skins/classic/js/bootstrap-4.5.0.js
web/skins/classic/js/bootstrap.bundle.min.js
web/skins/classic/js/bootstrap-table-1.23.3
web/skins/classic/js/bootstrap-table-1.23.5
web/skins/classic/js/chosen
web/skins/classic/js/dateTimePicker
web/skins/classic/js/jquery-*.js
Expand Down
6 changes: 4 additions & 2 deletions web/js/MonitorStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ function MonitorStream(monitorData) {
this.buttons[name] = element;
};
this.gridstack = null;
this.setGridStack = function(gs) { this.gridstack = gs; };
this.setGridStack = function(gs) {
this.gridstack = gs;
};

this.bottomElement = null;
this.setBottomElement = function(e) {
Expand Down Expand Up @@ -727,7 +729,7 @@ function MonitorStream(monitorData) {
if (analysisFPSValue.length && (analysisFPSValue.text() != monitor.AnalysisFPS)) {
analysisFPSValue.text(monitor.AnalysisFPS);
}

if (captureFPSValue.length && (captureFPSValue.text() != monitor.CaptureFPS)) {
captureFPSValue.text(monitor.CaptureFPS);
}
Expand Down

0 comments on commit c2fe3ce

Please sign in to comment.