Commit 282221f6 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix isStepType not as default true - #254

parent 95fffc70
...@@ -2163,7 +2163,7 @@ ...@@ -2163,7 +2163,7 @@
} }
function isStepType(d) { function isStepType(d) {
var id = (typeof d === 'string') ? d : d.id; var id = (typeof d === 'string') ? d : d.id;
return !(id in __data_types) || __data_types[id] === 'step' || __data_types[id] === 'area-step'; return __data_types[id] === 'step' || __data_types[id] === 'area-step';
} }
function isSplineType(d) { function isSplineType(d) {
var id = (typeof d === 'string') ? d : d.id; var id = (typeof d === 'string') ? d : d.id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment