summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-21 05:04:57 +0100
committerAndrew Dolgov <[email protected]>2009-01-21 05:04:57 +0100
commitd75ed3eba5022e50ccaf850ae2c9028f80902d76 (patch)
treee48b8e062e732cf6b23504d0111f91ebaebfba70 /tt-rss.js
parentb62f6ff448e8af386b4e0ff662098522d6332a52 (diff)
headlines toolbar: code cleanup
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 8dfcb8259..2e16fc804 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1202,19 +1202,6 @@ 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");
- }
- }
- }
-
if (keycode == 88) { // x
if (activeFeedIsCat()) {
toggleCollapseCat(getActiveFeedId());