summaryrefslogtreecommitdiff
path: root/js/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-08-14 19:30:49 +0400
committerAndrew Dolgov <[email protected]>2012-08-14 19:30:49 +0400
commit4d5eed551fde86dd15ca4e879fd6c9ec466a4b1a (patch)
tree0ab8a7fe64659cdebf5e665f5f3cdaf2932743a5 /js/functions.js
parent3ea91b2d18a95adf214b4dc599ba41a0e34e2d8a (diff)
only precache_headlines_idle() when actually idle
Diffstat (limited to 'js/functions.js')
-rw-r--r--js/functions.js19
1 files changed, 5 insertions, 14 deletions
diff --git a/js/functions.js b/js/functions.js
index b2d79dc56..578172c77 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -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);
+}