Skip to content

Commit

Permalink
fix(popup): multiple links showing on bottom left when hovering over …
Browse files Browse the repository at this point in the history
…games
  • Loading branch information
fent committed Nov 4, 2018
1 parent 97c493f commit 6b8852f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ const renderGroupVideo = (group, video) => {
if (opts.target === '_blank') { url += ' ⇗'; }
let el;
return m(selector, {
onmouseenter() {
onmouseenter(e) {
e.stopPropagation();
el = document.createElement('div');
el.className = 'mouseover-link';
el.textContent = url;
Expand Down

0 comments on commit 6b8852f

Please sign in to comment.