You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It removes my video element inside shadow dom and append it to the body tag,make it update the video tag inside shadow dom without disrupting my shadow dom sructure
import QrScanner from '/qr-scanner/qr-scanner.min.js';
It removes my video element inside shadow dom and append it to the body tag,make it update the video tag inside shadow dom without disrupting my shadow dom sructure
import QrScanner from '/qr-scanner/qr-scanner.min.js';
class scanningWindow extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: "open" });
this.render();
}
}
customElements.define('scanning-window',scanningWindow);
The text was updated successfully, but these errors were encountered: