@mottosports/motto-video-player 1.0.1-rc.37 → 1.0.1-rc.38
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/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1130,7 +1130,8 @@ var isPlayReadySupported = () => {
|
|
|
1130
1130
|
const isXbox = /Xbox/.test(userAgent);
|
|
1131
1131
|
const isEdge = /Edg/.test(userAgent);
|
|
1132
1132
|
const isIE = /Trident|MSIE/.test(userAgent);
|
|
1133
|
-
|
|
1133
|
+
const isWindows = /Windows/.test(userAgent);
|
|
1134
|
+
return isXbox || (isEdge || isIE) && isWindows;
|
|
1134
1135
|
};
|
|
1135
1136
|
var isChrome64PlusOnMacOrWindows = () => {
|
|
1136
1137
|
if (typeof navigator === "undefined") {
|
|
@@ -1157,7 +1158,7 @@ var isChrome64PlusOnMacOrWindows = () => {
|
|
|
1157
1158
|
import initShakaPlayerMux from "@mux/mux-data-shakaplayer";
|
|
1158
1159
|
|
|
1159
1160
|
// package.json
|
|
1160
|
-
var version = "1.0.1-rc.
|
|
1161
|
+
var version = "1.0.1-rc.38";
|
|
1161
1162
|
|
|
1162
1163
|
// src/utils/licenseCache.ts
|
|
1163
1164
|
var PERSISTENT_LICENSE_PREFIX = "motto_lic_";
|