Commit da665bc7 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix mapToTargetIds #1220

parent e21a8f85
...@@ -1789,7 +1789,7 @@ ...@@ -1789,7 +1789,7 @@
}; };
c3_chart_internal_fn.mapToTargetIds = function (ids) { c3_chart_internal_fn.mapToTargetIds = function (ids) {
var $$ = this; var $$ = this;
return ids ? (isString(ids) ? [ids] : ids) : $$.mapToIds($$.data.targets); return ids ? [].concat(ids) : $$.mapToIds($$.data.targets);
}; };
c3_chart_internal_fn.hasTarget = function (targets, id) { c3_chart_internal_fn.hasTarget = function (targets, id) {
var ids = this.mapToIds(targets), i; var ids = this.mapToIds(targets), i;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -147,7 +147,7 @@ c3_chart_internal_fn.mapToIds = function (targets) { ...@@ -147,7 +147,7 @@ c3_chart_internal_fn.mapToIds = function (targets) {
}; };
c3_chart_internal_fn.mapToTargetIds = function (ids) { c3_chart_internal_fn.mapToTargetIds = function (ids) {
var $$ = this; var $$ = this;
return ids ? (isString(ids) ? [ids] : ids) : $$.mapToIds($$.data.targets); return ids ? [].concat(ids) : $$.mapToIds($$.data.targets);
}; };
c3_chart_internal_fn.hasTarget = function (targets, id) { c3_chart_internal_fn.hasTarget = function (targets, id) {
var ids = this.mapToIds(targets), i; var ids = this.mapToIds(targets), i;
......
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