summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index e2b20779e..95ba610e2 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -1424,7 +1424,9 @@ function catchupSelection() {
function editArticleTags(id, feed_id, cdm_enabled) {
displayDlg('editArticleTags', id,
function () {
- new Ajax.Autocompleter('tags_str', 'tags_choices',
+ $("tags_str").focus();
+
+ new Ajax.Autocompleter('tags_str', 'tags_choices',
"backend.php?op=rpc&subop=completeTags",
{ tokens: ',', paramName: "search" });
});