Browse Source

forgot to commit built files for bower to use

pull/1057/head
Jean-Luc Martin 10 years ago
parent
commit
c41deabd1c
  1. 10
      c3.js
  2. 10
      c3.min.js

10
c3.js

@ -2609,7 +2609,15 @@
c3_chart_internal_fn.getParentRectValue = function (key) {
var parent = this.selectChart.node(), v;
while (parent && parent.tagName !== 'BODY') {
v = parent.getBoundingClientRect()[key];
try {
v = parent.getBoundingClientRect()[key];
} catch(e) {
if (key === 'width') {
// In IE in certain cases getBoundingClientRect
// will cause an "unspecified error"
v = parent.offsetWidth;
}
}
if (v) {
break;
}

10
c3.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save