1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:45:55 +00:00

only precache_headlines_idle() when actually idle

This commit is contained in:
Andrew Dolgov
2012-08-14 19:30:49 +04:00
parent 3ea91b2d18
commit 4d5eed551f
3 changed files with 21 additions and 25 deletions

View File

@@ -393,20 +393,6 @@ function getURLParam(param){
return String(window.location.href).parseQuery()[param];
}
function leading_zero(p) {
var s = String(p);
if (s.length == 1) s = "0" + s;
return s;
}
function make_timestamp() {
var d = new Date();
return leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
":" + leading_zero(d.getSeconds());
}
function closeInfoBox(cleanup) {
try {
dialog = dijit.byId("infoBox");
@@ -1718,3 +1704,8 @@ function get_radio_checked(radioObj) {
}
return("");
}
function get_timestamp() {
var date = new Date();
return Math.round(date.getTime() / 1000);
}