3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
7 // A dygraph "auto-loader".
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', ...)
13 var src
=document
.getElementsByTagName('script');
14 var script
= src
[src
.length
-1].getAttribute("src");
16 // This list needs to be kept in sync w/ the one
in generate
-combined
.sh
17 // and the one in jsTestDriver.conf.
19 "strftime/strftime-min.js",
20 "rgbcolor/rgbcolor.js",
29 "dygraph-interaction-model.js",
31 "dygraph-plugin-base.js",
32 "plugins/annotations.js",
34 "plugins/chart-labels.js",
37 "plugins/range-selector.js",
38 "dygraph-plugin-install.js",
39 "dygraph-options-reference.js", // Shouldn't be included in generate-combined.sh
40 "datahandler/datahandler.js",
41 "datahandler/default.js",
42 "datahandler/default-fractions.js",
43 "datahandler/bars.js",
44 "datahandler/bars-error.js",
45 "datahandler/bars-custom.js",
46 "datahandler/bars-fractions.js"
49 for (var i
= 0; i
< source_files
.length
; i
++) {
50 document
.write('<script type="text/javascript" src="' + script.replace('dygraph-dev.js', source_files[i]) + '"></script>\n');