Merge pull request #1307 from jguitar/master

use javascript dates to allow render flot points on the right place
stable
Alejandro 2017-05-10 11:39:26 +02:00 committed by GitHub
commit cfb2d662ac
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ SprintGraphDirective = ($translate)->
width = element.width() width = element.width()
element.height(240) element.height(240)
days = _.map(dataToDraw, (x) -> moment(x.day)) days = _.map(dataToDraw, (x) -> moment(new Date(x.day).getTime()))
data = [] data = []
data.unshift({ data.unshift({