Beta fix for binding of click events when using the render function as discussed in issue #188.

This commit is contained in:
knsv
2015-07-17 23:13:40 +02:00
parent ed712fa673
commit 71d4113ecf
9 changed files with 529 additions and 186 deletions

View File

@@ -1,15 +0,0 @@
/* global window
var d3;
if (require) {
try {
d3 = require("d3");
} catch (e) {}
}
if (!d3) {
d3 = window.d3;
}
module.exports = d3;*/