From 753cd0499d6e8d1a62d1d4a45d0875f89ea442f6 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Fri, 6 Oct 2023 02:04:19 +0800 Subject: [PATCH] chore: remove console log from `copy link` button --- _javascript/modules/components/clipboard.js | 1 - 1 file changed, 1 deletion(-) diff --git a/_javascript/modules/components/clipboard.js b/_javascript/modules/components/clipboard.js index f4634cf..68f6afd 100644 --- a/_javascript/modules/components/clipboard.js +++ b/_javascript/modules/components/clipboard.js @@ -126,6 +126,5 @@ export function initClipboard() { btnCopyLink.on('mouseleave', function (e) { const target = $(e.target); target.tooltip('hide'); - console.log('mouse leave...'); }); }