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 d7d1380 commit 5c67968Copy full SHA for 5c67968
spotlightsearch.js
@@ -119,6 +119,22 @@ searchInput.search = () => {
119
120
}
121
122
+
123
+ const moreButton = fileWrapper.querySelector('.item.more');
124
125
+ // if more button exists
126
+ if (moreButton) {
127
128
+ // if more button is in view
129
+ if (elInView(moreButton)) {
130
131
+ // load more items
132
+ clickedOnMoreButtonHTML(moreButton);
133
134
+ }
135
136
137
138
139
140
// search when typed in input
0 commit comments