From b78c3349c523f2a82b0c46c5b9e297a3b10fc91c Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Mon, 12 Aug 2013 16:59:38 -0400 Subject: [PATCH] address issue 445 --- dygraph-options-reference.js | 2 +- generate-combined.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dygraph-options-reference.js b/dygraph-options-reference.js index 64e738d..c952072 100644 --- a/dygraph-options-reference.js +++ b/dygraph-options-reference.js @@ -560,7 +560,7 @@ Dygraph.OPTIONS_REFERENCE = // "dateWindow": { "default": "Full range of the input is shown", "labels": ["Axis display"], - "type": "Array of two Dates or numbers", + "type": "Array of two numbers", "example": "[
  Date.parse('2006-01-01'),
  (new Date()).valueOf()
]", "description": "Initially zoom in on a section of the graph. Is of the form [earliest, latest], where earliest/latest are milliseconds since epoch. If the data for the x-axis is numeric, the values in dateWindow must also be numbers." }, diff --git a/generate-combined.sh b/generate-combined.sh index 9e184ae..4d062aa 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -55,8 +55,8 @@ compress*|cat_compress*) CatCompressed ;; update) - CatCompressed > dygraph-combined.js - chmod a+r dygraph-combined.js + CatCompressed > dygraph-min.js + chmod a+r dygraph-min.js ;; *) echo >&2 "Unknown action '$ACTION'" -- 2.7.4