videomail-client 15.3.0 → 15.3.1
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.
- package/dist/cjs/index.cjs +5 -3
- package/dist/esm/index.js +5 -3
- package/dist/umd/index.js +5 -3
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -11071,7 +11071,7 @@ var __webpack_modules__ = {
|
|
|
11071
11071
|
var client = __webpack_require__(5734);
|
|
11072
11072
|
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
|
|
11073
11073
|
var package_namespaceObject = {
|
|
11074
|
-
rE: "15.3.
|
|
11074
|
+
rE: "15.3.1"
|
|
11075
11075
|
};
|
|
11076
11076
|
function isAudioEnabled(options) {
|
|
11077
11077
|
return Boolean(options.audio.enabled);
|
|
@@ -18899,8 +18899,10 @@ var __webpack_modules__ = {
|
|
|
18899
18899
|
if (this.replayElement) {
|
|
18900
18900
|
this.replayElement.pause();
|
|
18901
18901
|
this.replayElement.removeAttribute("controls");
|
|
18902
|
-
this.replayElement.src
|
|
18903
|
-
|
|
18902
|
+
if (this.replayElement.hasAttribute("src")) {
|
|
18903
|
+
this.replayElement.removeAttribute("src");
|
|
18904
|
+
this.replayElement.load();
|
|
18905
|
+
}
|
|
18904
18906
|
html_hideElement(this.replayElement);
|
|
18905
18907
|
html_hideElement(this.replayElement.parentElement);
|
|
18906
18908
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -3621,7 +3621,7 @@ const constants = {
|
|
|
3621
3621
|
}
|
|
3622
3622
|
};
|
|
3623
3623
|
var package_namespaceObject = {
|
|
3624
|
-
rE: "15.3.
|
|
3624
|
+
rE: "15.3.1"
|
|
3625
3625
|
};
|
|
3626
3626
|
function isAudioEnabled(options) {
|
|
3627
3627
|
return Boolean(options.audio.enabled);
|
|
@@ -7755,8 +7755,10 @@ class Replay extends util_Despot {
|
|
|
7755
7755
|
if (this.replayElement) {
|
|
7756
7756
|
this.replayElement.pause();
|
|
7757
7757
|
this.replayElement.removeAttribute("controls");
|
|
7758
|
-
this.replayElement.src
|
|
7759
|
-
|
|
7758
|
+
if (this.replayElement.hasAttribute("src")) {
|
|
7759
|
+
this.replayElement.removeAttribute("src");
|
|
7760
|
+
this.replayElement.load();
|
|
7761
|
+
}
|
|
7760
7762
|
html_hideElement(this.replayElement);
|
|
7761
7763
|
html_hideElement(this.replayElement.parentElement);
|
|
7762
7764
|
}
|
package/dist/umd/index.js
CHANGED
|
@@ -11495,7 +11495,7 @@
|
|
|
11495
11495
|
var client = __webpack_require__(5734);
|
|
11496
11496
|
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
|
|
11497
11497
|
var package_namespaceObject = {
|
|
11498
|
-
rE: "15.3.
|
|
11498
|
+
rE: "15.3.1"
|
|
11499
11499
|
};
|
|
11500
11500
|
function isAudioEnabled(options) {
|
|
11501
11501
|
return Boolean(options.audio.enabled);
|
|
@@ -19010,8 +19010,10 @@
|
|
|
19010
19010
|
if (this.replayElement) {
|
|
19011
19011
|
this.replayElement.pause();
|
|
19012
19012
|
this.replayElement.removeAttribute("controls");
|
|
19013
|
-
this.replayElement.src
|
|
19014
|
-
|
|
19013
|
+
if (this.replayElement.hasAttribute("src")) {
|
|
19014
|
+
this.replayElement.removeAttribute("src");
|
|
19015
|
+
this.replayElement.load();
|
|
19016
|
+
}
|
|
19015
19017
|
html_hideElement(this.replayElement);
|
|
19016
19018
|
html_hideElement(this.replayElement.parentElement);
|
|
19017
19019
|
}
|