Merge pull request #3006 from BernieHuang2008/fix-3003

fix: [BUG] Images cannot be clicked anymore
pull/3011/head
Paul Braeuning 11 months ago committed by GitHub
commit b3d29cb86d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -16,7 +16,9 @@
}
));
d.querySelector('#search_url button#copy_url').style.display = "block";
if (d.querySelector('#search_url button#copy_url')) {
d.querySelector('#search_url button#copy_url').style.display = "block";
}
searxng.on('.btn-collapse', 'click', function () {
var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed');

Loading…
Cancel
Save