X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-dev.js;h=e1d8830ea31929bcf370117d29a4df7c58f3363b;hb=0c5904175568e3ed0bcde8e5578fe31595a03327;hp=709d0f76ecd6be9d5fd598d840429b045871bf74;hpb=74a5af31a87b245b89337037bc33a0e900153eae;p=dygraphs.git diff --git a/dygraph-dev.js b/dygraph-dev.js index 709d0f7..e1d8830 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,28 @@ (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", + "dygraph-layout.js", + "dygraph-canvas.js", + "dygraph.js", + "dygraph-utils.js", + "dygraph-gviz.js", + "dygraph-interaction-model.js", + "dygraph-range-selector.js", + "dygraph-tickers.js", + "plugins/base.js", + "plugins/legend.js", + "plugins/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'); } })();