From 59ee387ba6d5113ceedba2b16b1c0c53ddfa072c Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Wed, 11 Jan 2017 11:13:03 -0500 Subject: [PATCH] Documentation updates --- docs/index.html | 2 +- src/dygraph.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index f969672..aae433f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -53,7 +53,7 @@ pre.prettyprint {
  • Interactive out of the box: zoom, pan and mouseover are on by default.
  • Strong support for error bars / confidence intervals.
  • Highly customizable: using options and custom callbacks, you can make dygraphs do almost anything. -
  • dygraphs is highly compatible: it works in all major browsers (including IE8). You can even pinch to zoom on mobile/tablet devices! +
  • dygraphs is works in all recent browsers. You can even pinch to zoom on mobile/tablet devices!
  • There's an active community developing and supporting dygraphs.
  • diff --git a/src/dygraph.js b/src/dygraph.js index 8e6d6e0..d503669 100644 --- a/src/dygraph.js +++ b/src/dygraph.js @@ -3010,6 +3010,7 @@ Dygraph.prototype.parseDataTable_ = function(data) { /** * Signals to plugins that the chart data has updated. * This happens after the data has updated but before the chart has redrawn. + * @private */ Dygraph.prototype.cascadeDataDidUpdateEvent_ = function() { // TODO(danvk): there are some issues checking xAxisRange() and using @@ -3142,6 +3143,7 @@ Dygraph.prototype.updateOptions = function(input_attrs, block_redraw) { /** * Make a copy of input attributes, removing file as a convenience. + * @private */ Dygraph.copyUserAttrs_ = function(attrs) { var my_attrs = {}; -- 2.7.4