Removed debugging log calls.

This commit is contained in:
Marc-Andre Ferland 2022-11-17 02:45:09 -05:00
parent 3a18606385
commit e052610184

View File

@ -436,8 +436,6 @@ document.addEventListener('paste', async (event) => {
}
const paste = (event.clipboardData || window.clipboardData).getData('text')
const selection = window.getSelection()
console.log(selection)
console.log(selection.toString())
if (selection.toString().trim().length <= 0 && await parseContent(paste)) {
event.preventDefault()
return