Initial commit
This commit is contained in:
19
frontend/views/dashboard/dist/logs.js
vendored
Normal file
19
frontend/views/dashboard/dist/logs.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Logs = void 0;
|
||||
var Logs = /** @class */ (function () {
|
||||
function Logs() {
|
||||
this.cameraLogsContainer = document.querySelector('.ntsh_tab[tabid="cameralogs"] .ntsh_logs');
|
||||
this.unityLogsContainer = document.querySelector('.ntsh_tab[tabid="unitylogs"] .ntsh_logs');
|
||||
}
|
||||
Logs.prototype.setCameraLogs = function (logs) {
|
||||
this.applyLogs(this.cameraLogsContainer, logs);
|
||||
};
|
||||
Logs.prototype.setUnityLogs = function (logs) {
|
||||
this.applyLogs(this.unityLogsContainer, logs);
|
||||
};
|
||||
Logs.prototype.applyLogs = function (container, logs) { };
|
||||
return Logs;
|
||||
}());
|
||||
exports.Logs = Logs;
|
||||
//# sourceMappingURL=logs.js.map
|
||||
Reference in New Issue
Block a user