1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 07:41:29 +00:00

add experimental operation history stack

This commit is contained in:
Andrew Dolgov
2006-12-04 09:26:09 +01:00
parent d4b4b9dece
commit 1dc8dba07c
4 changed files with 101 additions and 10 deletions

View File

@@ -14,11 +14,16 @@ function feedlist_callback() {
}
}
function viewfeed(feed, subop, is_cat, subop_param) {
function viewfeed(feed, subop, is_cat, subop_param, skip_history) {
try {
enableHotkeys();
if (!skip_history) {
history_push('FEED:' + feed + ':' + subop + ':' + is_cat +
':' + subop_param);
}
var toolbar_query = Form.serialize("main_toolbar_form");
var toolbar_form = document.forms["main_toolbar_form"];