| Index: Source/devtools/front_end/utilities.js
|
| diff --git a/Source/devtools/front_end/utilities.js b/Source/devtools/front_end/utilities.js
|
| index cd2b4a92b231c623a1e5cd51cd0fe75c3988465e..201682451ff6b40bf61b91cd470e051055a4d8ad 100644
|
| --- a/Source/devtools/front_end/utilities.js
|
| +++ b/Source/devtools/front_end/utilities.js
|
| @@ -1140,7 +1140,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;
|
|
|