summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-28 07:51:34 +0100
committerAndrew Dolgov <[email protected]>2005-10-28 07:51:34 +0100
commit033e47e09b44151c785636005cbe744c25f96d0e (patch)
tree18042557eb016636613f938192bb98f063264ceb /backend.php
parentaee198609ddd8fad1b8240c38ef89df3c99e095d (diff)
extended search dialog placeholder, disabled for now
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php21
1 files changed, 20 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 07f6028ed..ed58fcea2 100644
--- a/backend.php
+++ b/backend.php
@@ -1320,7 +1320,9 @@
$param = $_GET["param"];
if ($id == "quickAddFeed") {
- print "Feed URL: <input id=\"qafInput\">
+ print "Feed URL: <input
+ onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
+ id=\"qafInput\">
<input class=\"button\"
type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Add feed\">
<input class=\"button\"
@@ -1352,6 +1354,23 @@
}
}
+ if ($id == "search") {
+
+ print "<input id=\"searchbox\" class=\"extSearch\"
+ onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
+ onchange=\"javascript:search()\">
+ <select id=\"searchmodebox\">
+ <option selected>All feeds</option>
+ <option>This feed</option>
+ </select>
+ <input type=\"submit\"
+ class=\"button\" onclick=\"javascript:search()\" value=\"Search\">
+ <input class=\"button\"
+ type=\"submit\" onclick=\"javascript:closeDlg()\"
+ value=\"Close\">";
+
+ }
+
}
db_close($link);