Fix eslint

pull/3195/merge
Isaac Connor 2024-10-15 18:10:05 -04:00
parent 038bf5c07e
commit c2fe3ce1e8
2 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ web/js/videojs.zoomrotate.js
web/js/fontfaceobserver.standalone.js web/js/fontfaceobserver.standalone.js
web/skins/classic/js/bootstrap-4.5.0.js web/skins/classic/js/bootstrap-4.5.0.js
web/skins/classic/js/bootstrap.bundle.min.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/chosen
web/skins/classic/js/dateTimePicker web/skins/classic/js/dateTimePicker
web/skins/classic/js/jquery-*.js web/skins/classic/js/jquery-*.js

View File

@ -41,7 +41,9 @@ function MonitorStream(monitorData) {
this.buttons[name] = element; this.buttons[name] = element;
}; };
this.gridstack = null; this.gridstack = null;
this.setGridStack = function(gs) { this.gridstack = gs; }; this.setGridStack = function(gs) {
this.gridstack = gs;
};
this.bottomElement = null; this.bottomElement = null;
this.setBottomElement = function(e) { this.setBottomElement = function(e) {
@ -727,7 +729,7 @@ function MonitorStream(monitorData) {
if (analysisFPSValue.length && (analysisFPSValue.text() != monitor.AnalysisFPS)) { if (analysisFPSValue.length && (analysisFPSValue.text() != monitor.AnalysisFPS)) {
analysisFPSValue.text(monitor.AnalysisFPS); analysisFPSValue.text(monitor.AnalysisFPS);
} }
if (captureFPSValue.length && (captureFPSValue.text() != monitor.CaptureFPS)) { if (captureFPSValue.length && (captureFPSValue.text() != monitor.CaptureFPS)) {
captureFPSValue.text(monitor.CaptureFPS); captureFPSValue.text(monitor.CaptureFPS);
} }