Fixed typo.
authorAdil <adilflorida@gmail.com>
Wed, 12 Dec 2012 18:28:38 +0000 (13:28 -0500)
committerAdil <adilflorida@gmail.com>
Wed, 12 Dec 2012 18:28:38 +0000 (13:28 -0500)
dygraph.js

index 72a459f..0d4f82c 100644 (file)
@@ -3028,7 +3028,7 @@ Dygraph.prototype.parseArray_ = function(data) {
     }
   }
 
-  if (Dygraph.isDateLike(data[0][0]) {
+  if (Dygraph.isDateLike(data[0][0])) {
     // Some intelligent defaults for a date x-axis.
     this.attrs_.axes.x.valueFormatter = Dygraph.dateString_;
     this.attrs_.axes.x.axisLabelFormatter = Dygraph.dateAxisFormatter;