1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 13:05:56 +00:00

tag editor: autocomplete

This commit is contained in:
Andrew Dolgov
2007-08-10 08:35:55 +01:00
parent d84f95234a
commit 05fcdf52b2
5 changed files with 64 additions and 5 deletions

View File

@@ -1470,6 +1470,15 @@ function infobox_callback() {
box.style.display = "block";
}
}
/* FIXME this needs to be moved out somewhere */
if (document.getElementById("tags_choices")) {
new Ajax.Autocompleter('tags_str', 'tags_choices',
"backend.php?op=rpc&subop=completeTags",
{ tokens: ',', paramName: "search" });
}
notify("");
} catch (e) {
exception_error("infobox_callback", e);