We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed79b5 commit e003f22Copy full SHA for e003f22
1 file changed
script.js
@@ -149,6 +149,18 @@ function initSearchBar() {
149
}
150
151
152
+ for (var key in BOOKMARKS) {
153
+ if (key.indexOf(this.value) === 0) {
154
+ var start_with = key.match(/[^/]+\/\/(www\.)?/)[1];
155
+
156
+ results.push([
157
+ key.replace(start_with, ''),
158
+ 0,
159
+ start_with
160
+ ]);
161
+ }
162
163
164
results = sort(results, 1);
165
166
results = results.slice(0, 6);
0 commit comments