| Index: tracing/tracing/ui/base/chart_base_2d_brushable_x.html
|
| diff --git a/tracing/tracing/ui/base/chart_base_2d_brushable_x.html b/tracing/tracing/ui/base/chart_base_2d_brushable_x.html
|
| index 4cde4b58bdd70519c63ca95cf3a8f9c215dfa2f7..5d2f799945e8fb0f07d6146ebad0471b72836bae 100644
|
| --- a/tracing/tracing/ui/base/chart_base_2d_brushable_x.html
|
| +++ b/tracing/tracing/ui/base/chart_base_2d_brushable_x.html
|
| @@ -65,6 +65,10 @@ tr.exportTo('tr.ui.b', function() {
|
| var brushRectsSel = brushSel.selectAll('rect').data(brushes);
|
| brushRectsSel.enter().append('rect');
|
| brushRectsSel.exit().remove();
|
| + this.drawBrush_(brushRectsSel);
|
| + },
|
| +
|
| + drawBrush_: function(brushRectsSel) {
|
| brushRectsSel
|
| .attr('x', function(d) {
|
| return this.xScale_(d.min);
|
|
|