Skip to content

Commit 6b8852f

Browse files
committed
fix(popup): multiple links showing on bottom left when hovering over games
1 parent 97c493f commit 6b8852f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

popup/popup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ const renderGroupVideo = (group, video) => {
206206
if (opts.target === '_blank') { url += ' ⇗'; }
207207
let el;
208208
return m(selector, {
209-
onmouseenter() {
209+
onmouseenter(e) {
210+
e.stopPropagation();
210211
el = document.createElement('div');
211212
el.className = 'mouseover-link';
212213
el.textContent = url;

0 commit comments

Comments
 (0)