From c5ce58fc4325755f57ac490e8bd6070818b6918b Mon Sep 17 00:00:00 2001 From: optrader Date: Tue, 11 Nov 2025 13:05:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20VideoPlayer=EC=97=90=20onClick=20prop=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=EB=A1=9C=20=ED=81=B4=EB=A6=AD=20=EC=9D=B4?= =?UTF-8?q?=EB=B2=A4=ED=8A=B8=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - VideoPlayer 컴포넌트에 onClick={handleVideoPlayerClick} 추가 - MediaPlayer가 modal 모드일 때 onClick을 처리하는 기능 활용 - 비디오 재생 중 클릭으로 전체화면 토글 동작 🤖 Generated with Claude Code Co-Authored-By: Claude --- .../ProductContentSection/ProductVideo/ProductVideo.v2.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductVideo/ProductVideo.v2.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductVideo/ProductVideo.v2.jsx index 5db5be57..34f153e2 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductVideo/ProductVideo.v2.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductVideo/ProductVideo.v2.jsx @@ -463,6 +463,7 @@ export default function ProductVideoV2({ disabled={false} onEnded={handleVideoEnded} onBackButton={handleBackButton} + onClick={handleVideoPlayerClick} noAutoPlay={false} noAutoShowMediaControls={!isFullscreen} autoCloseTimeout={5000}