Refactor code

This commit is contained in:
Tyler Long 2018-03-09 13:46:58 +08:00
parent 9c101eb8af
commit 53b97b3ffa
2 changed files with 3 additions and 6 deletions

View File

@ -176,10 +176,8 @@ export const addEdges = function (edges, g) {
if (typeof edge.interpolate !== 'undefined') {
edgeData.lineInterpolate = edge.interpolate
} else {
if (typeof edges.defaultInterpolate !== 'undefined') {
edgeData.lineInterpolate = edges.defaultInterpolate
}
} else if (typeof edges.defaultInterpolate !== 'undefined') {
edgeData.lineInterpolate = edges.defaultInterpolate
}
if (typeof edge.text === 'undefined') {

View File

@ -6,10 +6,9 @@
- rewrite less code
- Setup code coverage
- Create a desktop client
- Fix flowchart interpolate/curve issue
- not a common feature so dist/index.html cannot reproduce this issue
- Support customization of gantt diagram xAxis format
- https://github.com/d3/d3-time-format#api-reference
- https://bl.ocks.org/wboykinm/34627426d84f3242e0e6ecb2339e9065
- Upgrade jasmine to latest version or replace it
- Upgrade less to latest version or replace it
- Flowchart interpolate is useless because there is no rendering code using it