source: Dev/branches/rest-dojo-ui/Demo/d3/src/time/seconds.js @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 195 bytes
Line 
1d3.time.seconds = d3_time_range(d3.time.second, function(date) {
2  date.setTime(date.getTime() + 1e3);
3}, function(date) {
4  return date.getSeconds();
5});
6
7d3.time.seconds.utc = d3.time.seconds;
Note: See TracBrowser for help on using the repository browser.