Last change
on this file since 249 was
249,
checked in by hendrikvanantwerpen, 13 years ago
|
This one's for Subversion, because it's so close...
First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.
|
File size:
309 bytes
|
Line | |
---|
1 | d3.time.hours = d3_time_range(d3.time.hour, d3_time_hoursStep, function(date) { |
---|
2 | return date.getHours(); |
---|
3 | }); |
---|
4 | |
---|
5 | d3.time.hours.utc = d3_time_range(d3.time.hour.utc, d3_time_hoursStep, function(date) { |
---|
6 | return date.getUTCHours(); |
---|
7 | }); |
---|
8 | |
---|
9 | function d3_time_hoursStep(date) { |
---|
10 | date.setTime(date.getTime() + 36e5); |
---|
11 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.