Remove commented out code

This commit is contained in:
Julian Stirling 2026-02-15 20:02:30 +00:00
parent ca0b6c02d2
commit 63156c403b
2 changed files with 1 additions and 5 deletions

View file

@ -99,9 +99,7 @@ export default {
beforeUnmount: function () {
// Remove global signal listener to change the GPU preview state
//eventBus.off("globalTogglePreview", true);
// Remove global signal listener to flash the stream element
eventBus.off("globalFlashStream", this.onFlashStream);
eventBus.off("globalTogglePreview", true);
// Disconnect the size observer
this.sizeObserver.disconnect();
// Remove from the array of active streams

View file

@ -6,7 +6,6 @@ import UIkit from "uikit";
// Import MD icons
import "material-symbols/outlined.css";
//import queryMixin from "@/mixins/labThingsMixins.js";
import modalMixin from "@/mixins/modalMixins.js";
import labThingsMixins from "./mixins/labThingsMixins";
@ -27,7 +26,6 @@ const app = createApp(App);
//app.use(VueObserveVisibility);
// Use global mixins
// app.mixin(queryMixin);
app.mixin(modalMixin);
app.mixin(labThingsMixins);