JS is not C++
authorDan Vanderkam <danvdk@gmail.com>
Sat, 20 Feb 2010 01:57:54 +0000 (17:57 -0800)
committerDan Vanderkam <danvdk@gmail.com>
Sat, 20 Feb 2010 01:57:54 +0000 (17:57 -0800)
dygraph.js

index 6b1a99c..639f863 100644 (file)
@@ -1809,7 +1809,7 @@ Dygraph.prototype.parseArray_ = function(data) {
       if (parsedData[i][0] == null
           || typeof(parsedData[i][0].getTime) != 'function'
           || isNaN(parsedData[i][0].getTime())) {
-        this.error("x value in row " << (1 + i) << " is not a Date");
+        this.error("x value in row " + (1 + i) + " is not a Date");
         return null;
       }
       parsedData[i][0] = parsedData[i][0].getTime();