source:
Dev/trunk/d3/src/time/seconds.js
@
76
Last change on this file since 76 was 76, checked in by fpvanagthoven, 14 years ago | |
---|---|
File size: 195 bytes |
Line | |
---|---|
1 | d3.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 | |
7 | d3.time.seconds.utc = d3.time.seconds; |
Note: See TracBrowser
for help on using the repository browser.