@voicenter-team/opensips-js 1.0.119 → 1.0.120

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -82422,9 +82422,9 @@ class Wy extends Dw {
82422
82422
  }, this.selectors.document || (this.selectors.document = document);
82423
82423
  }
82424
82424
  createVideoElement() {
82425
- const e = this.selectors.document.createElement("video");
82425
+ const e = document.createElement("video");
82426
82426
  e.setAttribute("id", this.selectors.videoElement), e.setAttribute("autoplay", ""), e.style.setProperty("visibility", "hidden"), e.style.setProperty("width", "auto"), e.style.setProperty("height", "auto"), this.video = e;
82427
- const t = this.selectors.document.createElement("div");
82427
+ const t = document.createElement("div");
82428
82428
  t.classList.add(this.selectors.videoElementContainer), t.style.setProperty("display", "none"), t.appendChild(e), this.wrapperEl = t, this.selectors.document.body ? this.selectors.document.body.appendChild(t) : this.selectors.document.appendChild(t);
82429
82429
  }
82430
82430
  getAspectRatioDimensions(e, t) {