@sdk185/sip-phone-sdk26 0.2.35 → 0.2.37

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": "@sdk185/sip-phone-sdk26",
3
- "version": "0.2.35",
3
+ "version": "0.2.37",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -115,7 +115,8 @@
115
115
  x5-video-orientation="h5"
116
116
  ref="remoteVideo"
117
117
  class="sip-call-video"
118
- style="object-fit: contain;pointer-events: none !important;transform: scale(1.1) !important;"
118
+ style="object-fit: contain;pointer-events: auto !important;transform: scale(1.1) !important;"
119
+ @click="handleVideoPlayInteraction"
119
120
  controlsList="nodownload nofullscreen noremoteplayback"
120
121
  disablepictureinpicture
121
122
  ></video>
@@ -884,6 +885,10 @@ export default {
884
885
  this.localVideo.show = false
885
886
  }
886
887
  this.$refs.remoteVideo.srcObject = stream
888
+ // this.$refs.remoteVideo.play().catch(error => {
889
+ // console.error('this.$refs.remoteVideo.play--Video play failed:', error)
890
+ // this.$refs.remoteVideo.play()
891
+ // })
887
892
  }, 500)
888
893
 
889
894
  })