Index: Source/devtools/front_end/console/ConsoleViewMessage.js |
diff --git a/Source/devtools/front_end/console/ConsoleViewMessage.js b/Source/devtools/front_end/console/ConsoleViewMessage.js |
index d1ecfa006b0cbecb9a8f78f0984d66e4e7229664..361661a8403182f9693f3fdc38972d2c09045156 100644 |
--- a/Source/devtools/front_end/console/ConsoleViewMessage.js |
+++ b/Source/devtools/front_end/console/ConsoleViewMessage.js |
@@ -434,7 +434,7 @@ WebInspector.ConsoleViewMessage.prototype = { |
} |
} |
var note = titleElement.createChild("span", "object-info-state-note"); |
- WebInspector.Tooltip.install(note, WebInspector.UIString("Object value at left was snapshotted when logged, value below was evaluated just now.")); |
+ note.title = WebInspector.UIString("Object value at left was snapshotted when logged, value below was evaluated just now."); |
var section = new WebInspector.ObjectPropertiesSection(obj, titleElement); |
section.enableContextMenu(); |
elem.appendChild(section.element); |