Index: Source/devtools/front_end/sources/ThreadsSidebarPane.js |
diff --git a/Source/devtools/front_end/sources/ThreadsSidebarPane.js b/Source/devtools/front_end/sources/ThreadsSidebarPane.js |
index 89579c9097021fb3cd57a4c4042458af25d52b03..b8527d1258e5a98cc703a3300ced7a823d96184b 100644 |
--- a/Source/devtools/front_end/sources/ThreadsSidebarPane.js |
+++ b/Source/devtools/front_end/sources/ThreadsSidebarPane.js |
@@ -29,7 +29,7 @@ WebInspector.ThreadsSidebarPane.prototype = { |
*/ |
targetAdded: function(target) |
{ |
- var placard = new WebInspector.Placard(WebInspector.displayNameForURL(target.name()), ""); |
+ var placard = new WebInspector.Placard(target.name(), ""); |
placard.element.addEventListener("click", this._onPlacardClick.bind(this, placard), false); |
var currentTarget = WebInspector.context.flavor(WebInspector.Target); |
if (currentTarget === target) |
@@ -76,7 +76,7 @@ WebInspector.ThreadsSidebarPane.prototype = { |
_updateDebuggerState: function(target) |
{ |
var placard = this._targetsToPlacards.get(target); |
- placard.subtitle = target.debuggerModel.isPaused() ? WebInspector.UIString("Paused") : WebInspector.UIString("Running"); |
+ placard.subtitle = target.debuggerModel.isPaused() ? WebInspector.UIString("paused") : WebInspector.UIString(""); |
}, |
/** |