| Index: Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| diff --git a/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js b/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| index d2b66293af0ec16d7e813202aa14a2b6524f535c..9be20e578843c98f96ff9936280708b27be094f7 100644
|
| --- a/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| +++ b/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| @@ -53,7 +53,7 @@ WebInspector.DOMBreakpointsSidebarPane = function()
|
| this._contextMenuLabels[this._breakpointTypes.AttributeModified] = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Attributes modifications" : "Attributes Modifications");
|
| this._contextMenuLabels[this._breakpointTypes.NodeRemoved] = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Node removal" : "Node Removal");
|
|
|
| - WebInspector.targetManager.addModelListener(WebInspector.ResourceTreeModel, WebInspector.ResourceTreeModel.EventTypes.InspectedURLChanged, this._inspectedURLChanged, this);
|
| + WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.InspectedURLChanged, this._inspectedURLChanged, this);
|
| WebInspector.targetManager.addModelListener(WebInspector.DOMModel, WebInspector.DOMModel.Events.NodeRemoved, this._nodeRemoved, this);
|
| }
|
|
|
|
|