diff options
author | Hakim El Hattab <hakim@squarespace.com> | 2013-06-09 16:51:35 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim@squarespace.com> | 2013-06-09 16:51:35 +0200 |
commit | f5a379b8a1266859c747e3bb1feb0d768bbf074f (patch) | |
tree | c5266ea97bd1beea96d448505696d126fbdab17c /plugin/notes/notes.html | |
parent | aa9e298f3dcccef0342b3c5297b8042d695c60d5 (diff) | |
parent | 28d370f2aff34806f3c2d91bff06bf8f72c4b8ac (diff) | |
download | perl-software-in-gnu-guix-f5a379b8a1266859c747e3bb1feb0d768bbf074f.tar perl-software-in-gnu-guix-f5a379b8a1266859c747e3bb1feb0d768bbf074f.tar.gz |
merge notes timer rounding fix
Diffstat (limited to 'plugin/notes/notes.html')
-rw-r--r-- | plugin/notes/notes.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html index 2333878..8af43fb 100644 --- a/plugin/notes/notes.html +++ b/plugin/notes/notes.html @@ -213,9 +213,9 @@ now = new Date(); diff = now.getTime() - start.getTime(); - hours = parseInt( diff / ( 1000 * 60 * 60 ) ); - minutes = parseInt( ( diff / ( 1000 * 60 ) ) % 60 ); - seconds = parseInt( ( diff / 1000 ) % 60 ); + hours = Math.floor( diff / ( 1000 * 60 * 60 ) ); + minutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 ); + seconds = Math.floor( ( diff / 1000 ) % 60 ); clockEl.innerHTML = now.toLocaleTimeString(); hoursEl.innerHTML = zeroPadInteger( hours ); |