Index: Source/devtools/front_end/StylesSidebarPane.js |
diff --git a/Source/devtools/front_end/StylesSidebarPane.js b/Source/devtools/front_end/StylesSidebarPane.js |
index b02224a8a8e3c2c1139f5f72c699b71c694a94f8..7188f1b21502c1c072fbe7b4507934dc85fa20fc 100644 |
--- a/Source/devtools/front_end/StylesSidebarPane.js |
+++ b/Source/devtools/front_end/StylesSidebarPane.js |
@@ -994,7 +994,7 @@ WebInspector.StylePropertiesSection = function(parentPane, styleRule, editable, |
// The "linkedStylesheet" case. |
anchor = WebInspector.linkifyResourceAsNode(media.sourceURL, undefined, "subtitle", media.sourceURL); |
} |
- anchor.preferredPanel = "scripts"; |
+ anchor.preferredPanel = "sources"; |
anchor.style.float = "right"; |
refElement.appendChild(anchor); |
} |
@@ -1307,7 +1307,7 @@ WebInspector.StylePropertiesSection.prototype = { |
function linkifyUncopyable(url, line) |
{ |
var link = WebInspector.linkifyResourceAsNode(url, line, "", url + ":" + (line + 1)); |
- link.preferredPanel = "scripts"; |
+ link.preferredPanel = "sources"; |
link.classList.add("webkit-html-resource-link"); |
link.setAttribute("data-uncopyable", link.textContent); |
link.textContent = ""; |
@@ -2276,7 +2276,7 @@ WebInspector.StylePropertyTreeElement.prototype = { |
var uiLocation = this.property.uiLocation(propertyNameClicked); |
if (!uiLocation) |
return; |
- WebInspector.showPanel("scripts").showUILocation(uiLocation); |
+ WebInspector.showPanel("sources").showUILocation(uiLocation); |
}, |
/** |