Skip to content

Commit 709a52f

Browse files
billboard-loader.js: Define all required modules
This way, the behaviors can use billboard.js without defining dependecies each time
1 parent fe6b4c9 commit 709a52f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
define("d3-axis", ["d3"], d3 => d3);
2+
define("d3-brush", ["d3"], d3 => d3);
3+
define("d3-drag", ["d3"], d3 => d3);
4+
define("d3-dsv", ["d3"], d3 => d3);
5+
define("d3-ease", ["d3"], d3 => d3);
6+
define("d3-hierarchy", ["d3"], d3 => d3);
7+
define("d3-interpolate", ["d3"], d3 => d3);
8+
define("d3-scale", ["d3"], d3 => d3);
9+
define("d3-selection", ["d3"], d3 => d3);
10+
define("d3-shape", ["d3"], d3 => d3);
11+
define("d3-time-format", ["d3"], d3 => d3);
12+
define("d3-transition", ["d3"], d3 => d3);
13+
define("d3-zoom", ["d3"], d3 => d3);

0 commit comments

Comments
 (0)