Parcourir la source

returning meaningful values in getDataRange

+ instead of returning 'null', returning the
  calculated values
flowchartTest
Manuel Schallar il y a 10 ans
Parent
révision
d1e01bccf0
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      lib/timeline/Core.js

+ 2
- 2
lib/timeline/Core.js Voir le fichier

@ -496,8 +496,8 @@ Core.prototype.getDataRange = function() {
}
return {
start: null,
end: null
start: start,
end: end
}
};

Chargement…
Annuler
Enregistrer