X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-dev.js;h=c06d23d552b3721f30648f1ab7a5750bb20eb4c1;hb=2323945cebe74e7ca1f3897fcb5e7a5aed5fc80f;hp=709d0f76ecd6be9d5fd598d840429b045871bf74;hpb=74a5af31a87b245b89337037bc33a0e900153eae;p=dygraphs.git diff --git a/dygraph-dev.js b/dygraph-dev.js index 709d0f7..c06d23d 100644 --- a/dygraph-dev.js +++ b/dygraph-dev.js @@ -1,3 +1,9 @@ +/** + * @license + * Copyright 2011 Dan Vanderkam (danvdk@gmail.com) + * MIT-licensed (http://opensource.org/licenses/MIT) + */ + // A dygraph "auto-loader". // Check where this script was sourced from. If it was sourced from @@ -6,25 +12,34 @@ (function() { var src=document.getElementsByTagName('script'); var script = src[src.length-1].getAttribute("src"); - var m = /^(.*)\/[^/]*\.js$/.exec(script); - if (!m) { - console.error("Can't grok dygraph-dev.js path: " + script); - } else { - var path = m[1]; // captured group, not the full match. - // This list needs to be kept in sync w/ the one in generate-combined.sh - var source_files = [ - "strftime/strftime-min.js", - "rgbcolor/rgbcolor.js", - "dygraph-layout.js", - "dygraph-canvas.js", - "dygraph.js", - "dygraph-gviz.js", - "dygraph-debug.js" // Shouldn't be included in generate-combined.sh - ]; + // This list needs to be kept in sync w/ the one in generate-combined.sh + // and the one in jsTestDriver.conf. + var source_files = [ + "strftime/strftime-min.js", + "rgbcolor/rgbcolor.js", + "stacktrace.js", + "dashed-canvas.js", + "dygraph-options.js", + "dygraph-layout.js", + "dygraph-canvas.js", + "dygraph.js", + "dygraph-utils.js", + "dygraph-gviz.js", + "dygraph-interaction-model.js", + "dygraph-tickers.js", + "dygraph-plugin-base.js", + "plugins/annotations.js", + "plugins/axes.js", + "plugins/chart-labels.js", + "plugins/grid.js", + "plugins/legend.js", + "plugins/range-selector.js", + "dygraph-plugin-install.js", + "dygraph-options-reference.js" // Shouldn't be included in generate-combined.sh + ]; - for (var i = 0; i < source_files.length; i++) { - document.write('\n'); - } + for (var i = 0; i < source_files.length; i++) { + document.write('\n'); } })();