Commit | Line | Data |
---|---|---|
88e95c46 DV |
1 | /** |
2 | * @license | |
3 | * Copyright 2011 Dan Vanderkam (danvdk@gmail.com) | |
4 | * MIT-licensed (http://opensource.org/licenses/MIT) | |
5 | */ | |
5108eb20 | 6 | |
74a5af31 DV |
7 | // A dygraph "auto-loader". |
8 | ||
9 | // Check where this script was sourced from. If it was sourced from | |
10 | // '../dygraph-dev.js', then we should source all the other scripts with the | |
11 | // same relative path ('../dygraph.js', '../dygraph-canvas.js', ...) | |
12 | (function() { | |
13 | var src=document.getElementsByTagName('script'); | |
14 | var script = src[src.length-1].getAttribute("src"); | |
74a5af31 | 15 | |
3609c9aa DV |
16 | // This list needs to be kept in sync w/ the one in generate-combined.sh |
17 | // and the one in jsTestDriver.conf. | |
18 | var source_files = [ | |
a14ed8aa | 19 | "polyfills/console.js", |
fb63bf1b | 20 | "dashed-canvas.js", |
c1780ad0 | 21 | "dygraph-options.js", |
3609c9aa DV |
22 | "dygraph-layout.js", |
23 | "dygraph-canvas.js", | |
24 | "dygraph.js", | |
25 | "dygraph-utils.js", | |
26 | "dygraph-gviz.js", | |
27 | "dygraph-interaction-model.js", | |
ccd9d7c2 | 28 | "dygraph-tickers.js", |
1beeb310 | 29 | "dygraph-plugin-base.js", |
cbe41be1 | 30 | "plugins/annotations.js", |
f8540c66 | 31 | "plugins/axes.js", |
6dca682f | 32 | "plugins/chart-labels.js", |
cbe41be1 DV |
33 | "plugins/grid.js", |
34 | "plugins/legend.js", | |
0d216a60 | 35 | "plugins/range-selector.js", |
1beeb310 | 36 | "dygraph-plugin-install.js", |
a49c164a DE |
37 | "dygraph-options-reference.js", // Shouldn't be included in generate-combined.sh |
38 | "datahandler/datahandler.js", | |
39 | "datahandler/default.js", | |
40 | "datahandler/default-fractions.js", | |
41 | "datahandler/bars.js", | |
42 | "datahandler/bars-error.js", | |
43 | "datahandler/bars-custom.js", | |
44 | "datahandler/bars-fractions.js" | |
3609c9aa | 45 | ]; |
74a5af31 | 46 | |
3609c9aa DV |
47 | for (var i = 0; i < source_files.length; i++) { |
48 | document.write('<script type="text/javascript" src="' + script.replace('dygraph-dev.js', source_files[i]) + '"></script>\n'); | |
74a5af31 DV |
49 | } |
50 | })(); |