chore: remove console log from `copy link` button

This commit is contained in:
Cotes Chung 2023-10-06 02:04:19 +08:00
parent b7e9f3ec34
commit 753cd0499d
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
1 changed files with 0 additions and 1 deletions

View File

@ -126,6 +126,5 @@ export function initClipboard() {
btnCopyLink.on('mouseleave', function (e) { btnCopyLink.on('mouseleave', function (e) {
const target = $(e.target); const target = $(e.target);
target.tooltip('hide'); target.tooltip('hide');
console.log('mouse leave...');
}); });
} }