Skip to content

Commit

Permalink
Fix issue speced#333
Browse files Browse the repository at this point in the history
  • Loading branch information
almossawi committed Jan 20, 2015
1 parent 62e3c9a commit 6b54d64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/metricsgraphics.js
Original file line number Diff line number Diff line change
Expand Up @@ -4156,7 +4156,7 @@
//check to see if we already have this date in our data object
var existing_o = null;
$.each(args.data[i], function(i, val) {
if (Date.parse(val.date) === Date.parse(new Date(d))) {
if (Date.parse(val[args.x_accessor]) === Date.parse(new Date(d))) {
existing_o = val;

return false;
Expand Down
Loading

0 comments on commit 6b54d64

Please sign in to comment.