summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 1776c1c33..455a202c9 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -307,7 +307,22 @@ function update_title() {
//document.title = "Tiny Tiny RSS (" + total_unread + " unread)";
}
+function localPiggieFunction(enable) {
+ if (enable) {
+ var query_str = "backend.php?op=feeds&subop=piggie";
+
+ if (xmlhttp.readyState == 4 || xmlhttp.readyState == 0) {
+
+ xmlhttp.open("GET", query_str, true);
+ xmlhttp.onreadystatechange=feedlist_callback;
+ xmlhttp.send(null);
+ }
+ }
+}
+
+
function init() {
updateFeedList(false, false);
+ document.onkeydown = hotkey_handler;
setTimeout("timeout()", 1800*1000);
}