Browse Source

re-fix for linting

pull/1496/head
Sébastien Castiel 9 years ago
parent
commit
64bb5f5f69
  1. 8
      c3.js
  2. 8
      src/tooltip.js

8
c3.js

@ -3847,8 +3847,8 @@
if (config.data_groups.length === 0) { if (config.data_groups.length === 0) {
d.sort(function(a,b){ d.sort(function(a,b){
if (!a) return -1; if (!a) { return -1; }
if (!b) return 1; if (!b) { return 1; }
return orderAsc ? a.value - b.value : b.value - a.value; return orderAsc ? a.value - b.value : b.value - a.value;
}); });
} else { } else {
@ -3856,8 +3856,8 @@
return i.id; return i.id;
}); });
d.sort(function(a, b) { d.sort(function(a, b) {
if (!a) return -1; if (!a) { return -1; }
if (!b) return 1; if (!b) { return 1; }
if (a.value > 0 && b.value > 0) { if (a.value > 0 && b.value > 0) {
return orderAsc ? ids.indexOf(a.id) - ids.indexOf(b.id) : ids.indexOf(b.id) - ids.indexOf(a.id); return orderAsc ? ids.indexOf(a.id) - ids.indexOf(b.id) : ids.indexOf(b.id) - ids.indexOf(a.id);
} else { } else {

8
src/tooltip.js

@ -34,8 +34,8 @@ c3_chart_internal_fn.getTooltipContent = function (d, defaultTitleFormat, defaul
if (config.data_groups.length === 0) { if (config.data_groups.length === 0) {
d.sort(function(a,b){ d.sort(function(a,b){
if (!a) return -1; if (!a) { return -1; }
if (!b) return 1; if (!b) { return 1; }
return orderAsc ? a.value - b.value : b.value - a.value; return orderAsc ? a.value - b.value : b.value - a.value;
}); });
} else { } else {
@ -43,8 +43,8 @@ c3_chart_internal_fn.getTooltipContent = function (d, defaultTitleFormat, defaul
return i.id; return i.id;
}); });
d.sort(function(a, b) { d.sort(function(a, b) {
if (!a) return -1; if (!a) { return -1; }
if (!b) return 1; if (!b) { return 1; }
if (a.value > 0 && b.value > 0) { if (a.value > 0 && b.value > 0) {
return orderAsc ? ids.indexOf(a.id) - ids.indexOf(b.id) : ids.indexOf(b.id) - ids.indexOf(a.id); return orderAsc ? ids.indexOf(a.id) - ids.indexOf(b.id) : ids.indexOf(b.id) - ids.indexOf(a.id);
} else { } else {

Loading…
Cancel
Save