1
0
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:
Andrew Dolgov
2005-08-25 12:20:50 +01:00
parent e695fdc83e
commit 9cfc649af5
3 changed files with 142 additions and 8 deletions

View File

@@ -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);
}
}