@saooti/octopus-sdk 37.0.30 → 37.0.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "37.0.30",
3
+ "version": "37.0.31",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -219,8 +219,8 @@ export default defineComponent({
219
219
  iFrameSrc(): string {
220
220
  if ("video" === this.iFrameModel) {
221
221
  return (
222
- "http://www.ultimedia.com/deliver/generic/iframe/mdtk/01009833/zone/1/showtitle/1/src/" +
223
- this.podcast?.video?.videoId
222
+ "https://www.ultimedia.com/deliver/generic/iframe/mdtk/01009833/zone/1/showtitle/1/src/" +
223
+ this.podcast?.video?.videoId + "/sound/true"
224
224
  );
225
225
  }
226
226
  let url = [""];
@@ -6,8 +6,10 @@
6
6
  width="500"
7
7
  height="281"
8
8
  style="z-index: 1"
9
+ ebkitallowfullscreen="true"
10
+ mozallowfullscreen="true"
9
11
  allowfullscreen="true"
10
- allow="autoplay"
12
+ allow="fullscreen, autoplay"
11
13
  referrerpolicy="no-referrer-when-downgrade"
12
14
  ></iframe>
13
15
  </template>
@@ -27,22 +29,22 @@ export default defineComponent({
27
29
  return (
28
30
  "//www.ultimedia.com/deliver/generic/iframe/mdtk/01009833/zone/1/showtitle/1/src/" +
29
31
  this.playerPodcast?.video?.videoId +
30
- "/autoplay/1"
32
+ "/sound/true/autoplay/1"
31
33
  );
32
34
  }
33
35
  return "";
34
36
  },
35
37
  },
36
38
  watch: {
37
- srcVideo() {
39
+ /* srcVideo() {
38
40
  this.goFullScreen();
39
- },
41
+ }, */
40
42
  },
41
43
  mounted() {
42
- this.goFullScreen();
44
+ /* this.goFullScreen(); */
43
45
  },
44
46
  methods: {
45
- goFullScreen() {
47
+ /* goFullScreen() {
46
48
  if ("" === this.srcVideo) {
47
49
  return;
48
50
  }
@@ -58,7 +60,7 @@ export default defineComponent({
58
60
  default:
59
61
  console.log("The orientation API isn't supported in this browser :(");
60
62
  }
61
- },
63
+ }, */
62
64
  },
63
65
  });
64
66
  </script>