Skip to content

Commit

Permalink
forgot to remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Apr 4, 2011
1 parent cb4a3eb commit b110e2b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/date_util.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ function parseISO8601(s, ignoreTimezone) { // ignoreTimezone defaults to false
m[10] || 0,
m[12] ? Number("0." + m[12]) * 1000 : 0
);
console.log(m[18]);
var offset = Number(m[16]) * 60 + (m[18] ? Number(m[18]) : 0);
offset *= m[15] == '-' ? 1 : -1;
date = new Date(+date + (offset * 60 * 1000));
Expand Down

0 comments on commit b110e2b

Please sign in to comment.