Fix EOL to be dos or unix not both in same file.

This commit is contained in:
Mark Hindess
2014-07-23 22:07:02 +01:00
parent 55679694c9
commit 6c4611a934
3 changed files with 44 additions and 44 deletions

View File

@@ -150,7 +150,7 @@
return Number( value );
}
var p = value.split(":");
var offset = new Date().getTimezoneOffset();
var offset = new Date().getTimezoneOffset();
return (((Number(p[0])+1)*60)+Number(p[1])+offset)*60*1000;
}
return value;