diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2008-05-19 07:37:55 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2008-05-19 07:37:55 +0100 |
| commit | abe6d9346ea8a9cbbed7d11ec6f7a28183df04e9 (patch) | |
| tree | e55d8501ffcd6bfbab864388f174ccb06e46905c /tt-rss.js | |
| parent | 4fe5fe2d2ee8624dc9f7f04c72cc58432db113d8 (diff) | |
map inline search to |
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1106,6 +1106,18 @@ function hotkey_handler(e) { } } + if (keycode == 220 && shift_key) { // shift + | + if (document.getElementById("subtoolbar_search")) { + if (Element.visible("subtoolbar_search")) { + Element.hide("subtoolbar_search"); + Element.show("subtoolbar_ftitle"); + setTimeout("Element.focus('subtoolbar_search_box')", 100); + } else { + Element.show("subtoolbar_search"); + Element.hide("subtoolbar_ftitle"); + } + } + } } /* Prefix f */ |