client/general: remove spurious console.log

This commit is contained in:
rr- 2016-08-28 20:01:44 +02:00
parent 79d7b83e39
commit e83e1b06a1

View file

@ -481,7 +481,6 @@ document.addEventListener('input', e => {
// prevent opening buttons in new tabs
document.addEventListener('click', e => {
if (e.target.getAttribute('href') === '' && e.which === 2) {
console.log('prevented');
e.preventDefault();
}
});