]> git.wh0rd.org Git - tt-rss.git/commitdiff
new hotkey: shift-E - edit current feed
authorAndrew Dolgov <fox@madoka.spb.ru>
Tue, 5 Dec 2006 09:19:59 +0000 (10:19 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Tue, 5 Dec 2006 09:19:59 +0000 (10:19 +0100)
functions.js

index 6512d6adc34f91c3bee99ba88da49eef348a393f..383163f0a4b9bcccf35285aa65b57c1bcd97531f 100644 (file)
@@ -237,6 +237,10 @@ function hotkey_handler(e) {
                        debug_mode_enabled = !debug_mode_enabled;
                }
 
+               if (keycode == 69 && shift_key) {
+                       return editFeedDlg(getActiveFeedId());
+               }
+
                if (typeof localHotkeyHandler != 'undefined') {
                        try {
                                return localHotkeyHandler(e);