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

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 227 bytes
Line 
1d3.time.hour = function(date) {
2  var offset = date.getTimezoneOffset() / 60;
3  return new Date((~~(date / 36e5 - offset) + offset) * 36e5);
4};
5
6d3.time.hour.utc = function(date) {
7  return new Date(~~(date / 36e5) * 36e5);
8};
Note: See TracBrowser for help on using the repository browser.