We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d94781 commit fa24824Copy full SHA for fa24824
app/intro.html
@@ -928,7 +928,7 @@ <h2>最极客的云端开发体验</h2>
928
</div>
929
930
<div id="video-pop" onClick="handleCloseVideo()">
931
- <div class="board">
+ <div class="board" onClick="stopBubble(event)">
932
<video preload controls>
933
<source type="video/mp4" src="https://cs-res.codehub.cn/cloud-studio-plugins-intro.mp4">
934
</source>
@@ -1188,6 +1188,9 @@ <h2>最极客的云端开发体验</h2>
1188
$videoPop.classList.remove('on');
1189
$video.pause();
1190
}
1191
+ function stopBubble(event) {
1192
+ event.stopPropagation();
1193
+ }
1194
// 插件比赛广告图片
1195
const $campaignImg = document.querySelector('#campaign-img');
1196
function handleCampaign() {
0 commit comments