Skip to content

Commit

Permalink
fix: hide url when opening link to new page/tab
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Apr 23, 2023
1 parent a779ffd commit c6bb6e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/component/bookmarkTile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,10 @@ const BookmarkTile = function({
this.control.enable();
} else {
this.control.disable();

this.element.content.link.addEventListener('click', () => {
this.element.content.link.blur();
});
}

};
Expand Down

0 comments on commit c6bb6e3

Please sign in to comment.