| Index: Source/devtools/front_end/utilities.js
|
| diff --git a/Source/devtools/front_end/utilities.js b/Source/devtools/front_end/utilities.js
|
| index 32c5d3b268a17a7a6a71c4a254c3cee3fbccec17..476e3568755cebcb4560b212474aa8fdfc68f933 100644
|
| --- a/Source/devtools/front_end/utilities.js
|
| +++ b/Source/devtools/front_end/utilities.js
|
| @@ -1128,7 +1128,7 @@ function importScript(scriptName)
|
| if (!xhr.responseText)
|
| throw "empty response arrived for script '" + scriptName + "'";
|
| var sourceURL = WebInspector.ParsedURL.completeURL(window.location.href, scriptName);
|
| - window.eval(xhr.responseText + "\n//@ sourceURL=" + sourceURL);
|
| + window.eval(xhr.responseText + "\n//# sourceURL=" + sourceURL);
|
| }
|
|
|
| var loadScript = importScript;
|
|
|