mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 11:45:56 +00:00
viewfeed: reintroduce timestamps, fix debugging, fix some indents
This commit is contained in:
@@ -1037,7 +1037,8 @@ const App = {
|
||||
//window.open("backend.php?op=feeds&method=update_debugger&feed_id=" + Feeds.getActive());
|
||||
|
||||
/* global __csrf_token */
|
||||
App.postOpenWindow("backend.php", {op: "feeds", method: "update_debugger", feed_id: Feeds.getActive(), csrf_token: __csrf_token});
|
||||
App.postOpenWindow("backend.php", {op: "feeds", method: "update_debugger",
|
||||
feed_id: Feeds.getActive(), csrf_token: __csrf_token});
|
||||
|
||||
} else {
|
||||
alert("You can't debug this kind of feed.");
|
||||
@@ -1045,7 +1046,10 @@ const App = {
|
||||
};
|
||||
|
||||
this.hotkey_actions["feed_debug_viewfeed"] = () => {
|
||||
Feeds.open({feed: Feeds.getActive(), is_cat: Feeds.activeIsCat(), viewfeed_debug: true});
|
||||
//Feeds.open({feed: Feeds.getActive(), is_cat: Feeds.activeIsCat(), viewfeed_debug: true});
|
||||
|
||||
App.postOpenWindow("backend.php", {op: "feeds", method: "view",
|
||||
feed: Feeds.getActive(), timestamps: 1, is_cat: Feeds.activeIsCat(), csrf_token: __csrf_token});
|
||||
};
|
||||
|
||||
this.hotkey_actions["feed_edit"] = () => {
|
||||
|
||||
Reference in New Issue
Block a user