blob: c7e96f7614249ff699a3bc6f523bb837bdff43af [file] [log] [blame]
function sync() {
updateModel(function (model) {
d3.select('#lastUpdate').text(model.timestamp);
setTimeout(sync, 1000);
});
}
sync();