summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAdrian Lang <[email protected]>2010-01-06 12:17:28 +0100
committerAndrew Dolgov <[email protected]>2010-01-13 11:46:11 +0300
commit542aebacb73d9fe571048d01d9ffc12d4bca1643 (patch)
tree05cef8d04e2bb6d1c09f49991fdb68e500cf87a2 /viewfeed.js
parentae096313ed2a5fc4b96dc82a5203f23936cd23f8 (diff)
Add callback to Popups, focus subscribe URL input.
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index ad7e14553..d2425d99c 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -1468,7 +1468,12 @@ function catchupSelection() {
}
function editArticleTags(id, feed_id, cdm_enabled) {
- displayDlg('editArticleTags', id);
+ displayDlg('editArticleTags', id,
+ function () {
+ new Ajax.Autocompleter('tags_str', 'tags_choices',
+ "backend.php?op=rpc&subop=completeTags",
+ { tokens: ',', paramName: "search" });
+ });
}