Index: Source/devtools/front_end/network/NetworkDataGridNode.js |
diff --git a/Source/devtools/front_end/network/NetworkDataGridNode.js b/Source/devtools/front_end/network/NetworkDataGridNode.js |
index 08ec4bc013e087499eded811238f559158a69c4a..74670f2f6a0a065856b0bd9c5e69ba1a96193970 100644 |
--- a/Source/devtools/front_end/network/NetworkDataGridNode.js |
+++ b/Source/devtools/front_end/network/NetworkDataGridNode.js |
@@ -394,7 +394,7 @@ WebInspector.NetworkDataGridNode.prototype = { |
this._expandTimelineButton = this._timelineCell.createChild("div", "network-expand-timeline-button"); |
this._expandTimelineButton.createChild("div", "network-expand-timeline-glyph"); |
this._expandTimelineButton.title = WebInspector.UIString("Show full timeline"); |
- this._expandTimelineButton.addEventListener("click", this._onExpandTimeline.bind(this)); |
+ this._expandTimelineButton.addEventListener("mousedown", this._onExpandTimeline.bind(this)); |
} else if (!show && this._expandTimelineButton) { |
this._expandTimelineButton.remove(); |
this._expandTimelineButton = null; |
@@ -404,6 +404,7 @@ WebInspector.NetworkDataGridNode.prototype = { |
_onExpandTimeline: function(event) |
{ |
this._parentView.expandTimeline(); |
+ event.consume(); |
}, |
_updateTimingGraph: function() |