mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 12:11:29 +00:00
keyboard navigation and cute active headline selection
This commit is contained in:
18
functions.js
18
functions.js
@@ -1,3 +1,17 @@
|
||||
function notify_callback() {
|
||||
var container = document.getElementById('notify');
|
||||
if (xmlhttp.readyState == 4) {
|
||||
container.innerHTML=xmlhttp.responseText;
|
||||
}
|
||||
}
|
||||
|
||||
function rpc_notify_callback() {
|
||||
var container = document.getElementById('notify');
|
||||
if (xmlhttp_rpc.readyState == 4) {
|
||||
container.innerHTML=xmlhttp_rpc.responseText;
|
||||
}
|
||||
}
|
||||
|
||||
function param_escape(arg) {
|
||||
if (typeof encodeURIComponent != 'undefined')
|
||||
return encodeURIComponent(arg);
|
||||
@@ -64,6 +78,10 @@ function hotkey_handler(e) {
|
||||
localPiggieFunction(false);
|
||||
}
|
||||
|
||||
if (typeof localHotkeyHandler != 'undefined') {
|
||||
localHotkeyHandler(keycode);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user