Skip to content
Snippets Groups Projects
Verified Commit c2c98d41 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: rename camera file

parent 10162ad9
No related branches found
No related tags found
No related merge requests found
......@@ -11,4 +11,4 @@ import "../../../source/components/style/color.pcss";
import "../../../source/components/style/theme.pcss";
import "../../../source/components/style/normalize.pcss";
import "../../../source/components/style/typography.pcss";
import "../../../source/components/content/camera.mjs";
import "../../../source/components/content/camera-capture.mjs";
......@@ -108,39 +108,6 @@ class CameraCapture extends CustomElement {
return this;
}
/**
* This method is called when the element is connected to the dom.
*
* @return {void}
*/
connectedCallback() {
super.connectedCallback();
// const document = getDocument();
//
// for (const [, type] of Object.entries(["click", "touch"])) {
// // close on outside ui-events
// document.addEventListener(type, this[closeEventHandler]);
// }
//
// updatePopper.call(this);
// attachResizeObserver.call(this);
}
/**
* This method is called when the element is disconnected from the dom.
*
* @return {void}
*/
disconnectedCallback() {
super.disconnectedCallback();
// // close on outside ui-events
// for (const [, type] of Object.entries(["click", "touch"])) {
// document.removeEventListener(type, this[closeEventHandler]);
// }
}
/**
* To set the options via the HTML Tag, the attribute `data-monster-options` must be used.
* @see {@link https://monsterjs.org/en/doc/#configurate-a-monster-control}
......@@ -224,6 +191,9 @@ class CameraCapture extends CustomElement {
}
}
/**
* @private
*/
function initCameraControl() {
const self = this;
......
......@@ -30,7 +30,7 @@ export * from "./components/layout/slider.mjs";
export * from "./components/content/fetch-box.mjs";
export * from "./components/content/viewer.mjs";
export * from "./components/content/copy.mjs";
export * from "./components/content/camera.mjs";
export * from "./components/content/camera-capture.mjs";
export * from "./components/time/timeline/appointment.mjs";
export * from "./components/time/timeline/segment.mjs";
export * from "./components/time/day.mjs";
......
......@@ -10,7 +10,7 @@
<body>
<div id="headline" style="display: flex;align-items: center;justify-content: center;flex-direction: column;">
<h1 style='margin-bottom: 0.1em;'>Monster 3.115.0</h1>
<div id="lastupdate" style='font-size:0.7em'>last update Di 1. Apr 19:42:27 CEST 2025</div>
<div id="lastupdate" style='font-size:0.7em'>last update Di 1. Apr 21:19:27 CEST 2025</div>
</div>
<div id="mocha-errors"
style="color: red;font-weight: bold;display: flex;align-items: center;justify-content: center;flex-direction: column;margin:20px;"></div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment