1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

feed browser: search

This commit is contained in:
Andrew Dolgov
2009-01-20 10:43:45 +01:00
parent 467ff40210
commit 76e9a473d1
2 changed files with 42 additions and 4 deletions
+6
View File
@@ -1515,6 +1515,12 @@ function updateBigFeedBrowser(limit, from_button) {
query = query + "&limit=" + param_escape(limit);
}
var search = document.getElementById("feed_browser_search");
if (search) {
query = query + "&search=" + param_escape(search.value);
}
xmlhttp.open("GET", query, true);
xmlhttp.onreadystatechange=feed_browser_callback;
xmlhttp.send(null);