Index: Source/devtools/front_end/components/ObjectPropertiesSection.js |
diff --git a/Source/devtools/front_end/components/ObjectPropertiesSection.js b/Source/devtools/front_end/components/ObjectPropertiesSection.js |
index 9ffc15ca93c4c4c6ade75ed2c9df80ad8e260339..99c95524c09587edbdd0f6e40ceb4d280c1ea7c1 100644 |
--- a/Source/devtools/front_end/components/ObjectPropertiesSection.js |
+++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js |
@@ -1147,6 +1147,7 @@ WebInspector.ObjectPropertiesSection.createValueElement = function(value, wasThr |
if (type === "object" && subtype === "node" && description) { |
WebInspector.DOMPresentationUtils.createSpansForNodeTitle(valueElement, description); |
+ valueElement.addEventListener("click", WebInspector.Revealer.reveal.bind(WebInspector.Revealer, value, undefined), false); |
pfeldman
2015/05/25 16:25:16
Make sure you consume the click.
kozy
2015/05/25 18:03:30
Done.
|
valueElement.addEventListener("mousemove", mouseMove, false); |
valueElement.addEventListener("mouseleave", mouseLeave, false); |
} else { |