Fix fir defect #141 regarding comment characters

This commit is contained in:
knsv
2015-03-22 18:02:45 +01:00
parent 22b9ee4919
commit 0ed5a01756
11 changed files with 658 additions and 554 deletions

15
src/diagrams/flowchart/d3.js vendored Normal file
View File

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