We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c04202 commit 7096083Copy full SHA for 7096083
searchJumper.user.js
@@ -6894,12 +6894,15 @@
6894
if (type.style.display != 'none') {
6895
let sitelist = type.querySelector('.sitelist');
6896
if (sitelist) {
6897
- sitelist.style.opacity = "";
6898
self.sitelistBox.appendChild(sitelist);
6899
- self.initList(sitelist);
6900
}
6901
6902
});
+ [].forEach.call(self.sitelistBox.querySelectorAll('.sitelist'), sitelist => {
+ sitelist.style.opacity = "";
6903
+ sitelist.style.height = "";
6904
+ self.initList(sitelist);
6905
+ });
6906
this.historySiteBtns.slice(0, 20).forEach(btn => {
6907
let siteImg = btn.querySelector('img');
6908
if (siteImg && siteImg.dataset.src) {
0 commit comments