Commit 4f8f63c0 authored by Austin Murdock's avatar Austin Murdock

fix(AMD-module): updating to enforce the AMD standard

https://github.com/amdjs/amdjs-api/blob/master/AMD.md designates that the factory should be a function.
parent 4eb2dd13
......@@ -7091,7 +7091,7 @@
}
if (typeof define === 'function' && define.amd) {
define("c3", ["d3"], c3);
define("c3", ["d3"], function () { return c3; });
} else if ('undefined' !== typeof exports && 'undefined' !== typeof module) {
module.exports = c3;
} else {
......
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