]> git.wh0rd.org - tt-rss.git/commitdiff
quickAddFilter/Feed focus improvements
authorAndrew Dolgov <fox@bah.org.ru>
Wed, 3 Feb 2010 12:06:25 +0000 (15:06 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Wed, 3 Feb 2010 12:06:25 +0000 (15:06 +0300)
tt-rss.js

index d93ea260a53d0cf19dd303822c42dc8215df793a..c816dc3788bdf89e738c8639cbc224d7feda1add 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -619,7 +619,8 @@ function quickMenuGo(opid) {
                }
        
                if (opid == "qmcAddFilter") {
-                       displayDlg("quickAddFilter", getActiveFeedId());
+                       displayDlg('quickAddFilter', '',
+                          function () {document.forms['filter_add_form'].reg_exp.focus();});
                }
 
                if (opid == "qmcAddLabel") {
@@ -1286,7 +1287,9 @@ function hotkey_handler(e) {
                        }
 
                        if (keycode == 83) { // s
-                               displayDlg("quickAddFeed");
+                               displayDlg('quickAddFeed', '',
+                                          function () {$('feed_url').focus();});
+
                                return false;
                        }
 
@@ -1322,7 +1325,8 @@ function hotkey_handler(e) {
                        hotkey_prefix = false;
 
                        if (keycode == 70) { // f
-                               displayDlg("quickAddFilter", getActiveFeedId());
+                               displayDlg('quickAddFilter', '',
+                                  function () {document.forms['filter_add_form'].reg_exp.focus();});
                                return false;
                        }