in content/js/flink.js [80:92]
function selectTextAndCopy(containerId) {
if (wasLastCopied(containerId)) {
return;
}
try {
if (highlightContent(containerId)) {
if (document.queryCommandSupported("copy")) {
document.execCommand("copy") && showCurrentCopyAlert(containerId);
}
}
} catch (e) {}
}