add f-D debug feed update hotkey
This commit is contained in:
parent
8e00e9beb4
commit
ca3bb6c75f
10
js/tt-rss.js
10
js/tt-rss.js
|
@ -887,6 +887,16 @@ function hotkey_handler(e) {
|
|||
}
|
||||
}
|
||||
|
||||
if (keycode == 68 && shift_key) { // D
|
||||
|
||||
window.open("backend.php?op=feeds&method=view&feed=" + getActiveFeedId() +
|
||||
"&view_mode=adaptive&order_by=default&update=&m=ForceUpdate&cat=" +
|
||||
activeFeedIsCat() + "&DevForceUpdate=1&debug=2&xdebug=2&csrf_token=" +
|
||||
getInitParam("csrf_token"));
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if (keycode == 69) { // e
|
||||
|
||||
if (activeFeedIsCat())
|
||||
|
|
Loading…
Reference in New Issue