X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=tt-rss.js;h=233de669a7a4dc3fe44bd56551735b8afa75fa1f;hb=3393238de25981525ca816391b8e94274d94a3f8;hp=5d62fb25be081416461411d42eda56e48d16f6c3;hpb=f2a648e1b28dcc92fb52886b22a68fcb7b1f80b8;p=tt-rss.git diff --git a/tt-rss.js b/tt-rss.js index 5d62fb25..233de669 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -534,8 +534,7 @@ function quickMenuGo(opid) { } if (opid == "qmcAddFeed") { - displayDlg('quickAddFeed', '', - function () {$('feed_url').focus();}); + quickAddFeed(); return; } @@ -791,6 +790,7 @@ function editFeedDlg(feed) { parameters: query, onComplete: function(transport) { infobox_callback2(transport); + document.forms["edit_feed_form"].title.focus(); } }); } catch (e) { @@ -1236,9 +1236,7 @@ function hotkey_handler(e) { } if (keycode == 83) { // s - displayDlg('quickAddFeed', '', - function () {$('feed_url').focus();}); - + quickAddFeed(); return false; }