blob: c7e96f7614249ff699a3bc6f523bb837bdff43af [file] [log] [blame]
Paul Greyson6f86d1e2013-03-18 14:40:39 -07001function sync() {
2 updateModel(function (model) {
3 d3.select('#lastUpdate').text(model.timestamp);
4 setTimeout(sync, 1000);
5 });
6}
7sync();