@ray-js/ipc-player-integration 0.0.1-beta-47 → 0.0.1-beta-48
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/lib/ui/ui.js +1 -2
- package/package.json +1 -1
package/lib/ui/ui.js
CHANGED
|
@@ -295,7 +295,6 @@ export const IPCPlayerIntegration = /*#__PURE__*/React.memo(props => {
|
|
|
295
295
|
ptzControllable: screenType === 'vertical',
|
|
296
296
|
privateState: privateState,
|
|
297
297
|
onPlayerTap: data => {
|
|
298
|
-
onPlayerTap(data);
|
|
299
298
|
// if (disablePlayerTap.current) {
|
|
300
299
|
// console.log('playerTap 事件已禁止');
|
|
301
300
|
// return;
|
|
@@ -308,7 +307,7 @@ export const IPCPlayerIntegration = /*#__PURE__*/React.memo(props => {
|
|
|
308
307
|
} else {
|
|
309
308
|
triggerEvent(hideAllComponent);
|
|
310
309
|
}
|
|
311
|
-
|
|
310
|
+
onPlayerTap(data);
|
|
312
311
|
return false; // eslint-disable-line
|
|
313
312
|
} // 对应原来的onVideoTap
|
|
314
313
|
,
|