| Index: Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/Source/devtools/front_end/sources/SourcesPanel.js b/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 380b268dce587311ab8275671ba59d8aee46765e..f651f21cd178dbd1c6e1ce9141179402d4ef8e55 100644
|
| --- a/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -840,7 +840,7 @@ WebInspector.SourcesPanel.prototype = {
|
| */
|
| mapFileSystemToNetwork: function(uiSourceCode)
|
| {
|
| - WebInspector.SelectUISourceCodeForProjectTypesDialog.show(uiSourceCode.name(), [WebInspector.projectTypes.Network, WebInspector.projectTypes.ContentScripts], mapFileSystemToNetwork.bind(this), this._sourcesView.element);
|
| + WebInspector.SelectUISourceCodeForProjectTypesDialog.show(uiSourceCode.name(), [WebInspector.projectTypes.Network, WebInspector.projectTypes.ContentScripts], mapFileSystemToNetwork.bind(this));
|
|
|
| /**
|
| * @param {?WebInspector.UISourceCode} networkUISourceCode
|
| @@ -860,7 +860,7 @@ WebInspector.SourcesPanel.prototype = {
|
| */
|
| mapNetworkToFileSystem: function(networkUISourceCode)
|
| {
|
| - WebInspector.SelectUISourceCodeForProjectTypesDialog.show(networkUISourceCode.name(), [WebInspector.projectTypes.FileSystem], mapNetworkToFileSystem.bind(this), this._sourcesView.element);
|
| + WebInspector.SelectUISourceCodeForProjectTypesDialog.show(networkUISourceCode.name(), [WebInspector.projectTypes.FileSystem], mapNetworkToFileSystem.bind(this));
|
|
|
| /**
|
| * @param {?WebInspector.UISourceCode} uiSourceCode
|
|
|