This commit is contained in:
dethe 2013-04-05 17:07:56 -07:00
Родитель 65f7558678
Коммит 3d93993d40
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -206,7 +206,7 @@ function drawText(){
function timeNow(){
var d = new Date();
return (d.getHours() % 12) + ':' + d.getMinutes() + ['am','pm'][Math.round(d.getHours() / 12)];
return (d.getHours() % 12) + ':' + d.toLocaleFormat('%M') + ['am','pm'][Math.round(d.getHours() / 12)];
}
function dateNow(){
@ -223,6 +223,7 @@ function timeToBucket(timestamp){
var handTimer = null;
var lastAngle = null;
function drawTimerHand(time){
if (!time) time = new Date();
var hand = document.getElementById('timerhand');
@ -233,6 +234,13 @@ function drawTimerHand(time){
vizcanvas.appendChild(hand);
}
vizcanvas.appendChild(hand);
if (!lastAngle){
lastAngle = timeToAngle(time);
}
if (lastAngle !== timeToAngle(time){
lastAngle = timeToAngle(time);
fadeEarlierTrackers(lastAngle);
}
hand.setAttribute('transform', 'rotate(' + (timeToAngle(time) - 180) + ' ' + CENTRE + ') ' + HAND_TRANS);
handTimer = setTimeout(drawTimerHand, 1000);
}