summaryrefslogtreecommitdiff
path: root/lib/js
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2012-02-04 11:01:06 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2012-02-04 11:01:06 -0500
commite0e4f3c3978c8cf18f6e2c11203051c2ef4d4a68 (patch)
treee85b1d872c1f40a0b7ba471cf80d0787e65c7eb7 /lib/js
parent08e55a0472abe5a5464996402c398517422514fd (diff)
Basis.toMilliseconds and diffInMilliseconds, based on a patch from Gergely Buday
Diffstat (limited to 'lib/js')
-rw-r--r--lib/js/urweb.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js
index b557147b..a5ab90c5 100644
--- a/lib/js/urweb.js
+++ b/lib/js/urweb.js
@@ -132,10 +132,18 @@ function diffInSeconds(tm1, tm2) {
return Math.round((tm2 - tm1) / 1000000);
}
+function diffInMilliseconds(tm1, tm2) {
+ return Math.round((tm2 - tm1) / 1000);
+}
+
function toSeconds(tm) {
return Math.round(tm / 1000000);
}
+function toMilliseconds(tm) {
+ return Math.round(tm / 1000);
+}
+
function addSeconds(tm, n) {
return tm + n * 1000000;
}