fix bug 92
authorDan Vanderkam <danvk@google.com>
Thu, 3 Feb 2011 23:03:44 +0000 (18:03 -0500)
committerDan Vanderkam <danvk@google.com>
Thu, 3 Feb 2011 23:03:44 +0000 (18:03 -0500)
dygraph.js

index 6bdb143..b3433e2 100644 (file)
@@ -2730,7 +2730,7 @@ Dygraph.dateParser = function(dateStr, self) {
  */
 Dygraph.prototype.detectTypeFromString_ = function(str) {
   var isDate = false;
-  if (str.indexOf('-') >= 0 ||
+  if (str.indexOf('-') > 0 ||
       str.indexOf('/') >= 0 ||
       isNaN(parseFloat(str))) {
     isDate = true;