X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-dev.js;h=c06d23d552b3721f30648f1ab7a5750bb20eb4c1;hb=b941564d6f1d2791c6b9714bd089bd19f4ca67b3;hp=1e7bada61ce9b0e0d9b85bb45898e7ce5c21a462;hpb=bbfb84f2a5e0fbb5259fab16f0785a5806c5bf8d;p=dygraphs.git diff --git a/dygraph-dev.js b/dygraph-dev.js index 1e7bada..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,28 +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 - // and the one in jsTestDriver.conf. - var source_files = [ - "strftime/strftime-min.js", - "rgbcolor/rgbcolor.js", - "dygraph-layout.js", - "dygraph-canvas.js", - "dygraph.js", - "dygraph-utils.js", - "dygraph-gviz.js", - "dygraph-interaction-model.js", - "dygraph-options-reference.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'); } })();