3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00

Remove console.log.

This commit is contained in:
Michael Stenta 2018-11-10 09:51:36 -05:00
parent 174286b876
commit cec49722b0

View file

@ -17,7 +17,6 @@
// Iterate through the data and put it into the arrays.
for (var j = 0; j < data.length; j++) {
var tzoffset = (new Date()).getTimezoneOffset() * 60000;
console.log(tzoffset);
var date = new Date((data[j].timestamp * 1000) - tzoffset).toISOString();
dates.push(date);
values.push(data[j][name]);