remove toggling from = hotkey, rename to f h
This commit is contained in:
parent
3908a1af90
commit
004523dda5
|
@ -44,9 +44,6 @@ function viewNextFeedPage() {
|
||||||
function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
|
function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
// reset = hotkey
|
|
||||||
read_headlines_visible = true;
|
|
||||||
|
|
||||||
// if (!offset) page_offset = 0;
|
// if (!offset) page_offset = 0;
|
||||||
|
|
||||||
last_requested_article = 0;
|
last_requested_article = 0;
|
||||||
|
|
|
@ -38,11 +38,11 @@
|
||||||
<table>
|
<table>
|
||||||
<tr><td class='n'>r</td><td><?php echo __("Update active feed") ?></td></tr>
|
<tr><td class='n'>r</td><td><?php echo __("Update active feed") ?></td></tr>
|
||||||
<tr><td class='n'>R</td><td><?php echo __("Update all feeds") ?></td></tr>
|
<tr><td class='n'>R</td><td><?php echo __("Update all feeds") ?></td></tr>
|
||||||
<tr><td class='n'>=</td><td><?php echo __("(Un)hide read articles") ?></td></tr>
|
|
||||||
<tr><td class='n'>f a</td><td><?php echo __("(Un)hide read feeds") ?></td></tr>
|
<tr><td class='n'>f a</td><td><?php echo __("(Un)hide read feeds") ?></td></tr>
|
||||||
<tr><td class='n'>f s</td><td><?php echo __("Subscribe to feed") ?></td></tr>
|
<tr><td class='n'>f s</td><td><?php echo __("Subscribe to feed") ?></td></tr>
|
||||||
<tr><td class='n'>f e</td><td><?php echo __("Edit feed") ?></td></tr>
|
<tr><td class='n'>f e</td><td><?php echo __("Edit feed") ?></td></tr>
|
||||||
<tr><td class='n'>f w</td><td><?php echo __("Sort by name or unread count") ?></td></tr>
|
<tr><td class='n'>f w</td><td><?php echo __("Sort by name or unread count") ?></td></tr>
|
||||||
|
<tr><td class='n'>f h</td><td><?php echo __("Hide visible read articles") ?></td></tr>
|
||||||
<tr><td class='n'>q</td><td><?php echo __("Mark feed as read") ?></td></tr>
|
<tr><td class='n'>q</td><td><?php echo __("Mark feed as read") ?></td></tr>
|
||||||
<tr><td class='n'>Q</td><td><?php echo __("Mark all feeds as read") ?></td></tr>
|
<tr><td class='n'>Q</td><td><?php echo __("Mark all feeds as read") ?></td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
10
tt-rss.js
10
tt-rss.js
|
@ -1170,11 +1170,6 @@ function hotkey_handler(e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (keycode == 187) { // =
|
|
||||||
hideReadHeadlines();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Prefix f */
|
/* Prefix f */
|
||||||
|
@ -1229,6 +1224,11 @@ function hotkey_handler(e) {
|
||||||
return resort_feedlist();
|
return resort_feedlist();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (keycode == 72) { // h
|
||||||
|
hideReadHeadlines();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Prefix c */
|
/* Prefix c */
|
||||||
|
|
|
@ -21,7 +21,6 @@ var vgroup_last_feed = false;
|
||||||
var post_under_pointer = false;
|
var post_under_pointer = false;
|
||||||
|
|
||||||
var last_requested_article = false;
|
var last_requested_article = false;
|
||||||
var read_headlines_visible = true;
|
|
||||||
|
|
||||||
function catchup_callback() {
|
function catchup_callback() {
|
||||||
if (xmlhttp_rpc.readyState == 4) {
|
if (xmlhttp_rpc.readyState == 4) {
|
||||||
|
@ -1805,6 +1804,8 @@ function hideReadHeadlines() {
|
||||||
ids = cdmGetVisibleArticles();
|
ids = cdmGetVisibleArticles();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var read_headlines_visible = true;
|
||||||
|
|
||||||
for (var i = 0; i < ids.length; i++) {
|
for (var i = 0; i < ids.length; i++) {
|
||||||
var row = document.getElementById("RROW-" + ids[i]);
|
var row = document.getElementById("RROW-" + ids[i]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue