Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
made changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeads committed Jul 14, 2014
1 parent d42db65 commit ab43398
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -99,6 +99,10 @@ var PerformanceGraphComponent = new Class({
'plothover', _.bind(this._hoverPlot, this)
);

$(this.view.chartContainerSel).bind(
'plotselected', _.bind(this._selectPlot, this)
);

$(this.view.timeRangeSel).bind(
'change', _.bind(this.changeTimeRange, this)
);
Expand Down Expand Up @@ -128,6 +132,9 @@ var PerformanceGraphComponent = new Class({
_.bind(this.stateChange, this)
);
},
_selectPlot: function(event, ranges){
console.log([event, ranges]);
},
formatLabel: function(label, series){
return this.tickDisplayDates[label] || "";
},
Expand Down

0 comments on commit ab43398

Please sign in to comment.