| Index: chrome/browser/resources/net_internals/main.js
|
| diff --git a/chrome/browser/resources/net_internals/main.js b/chrome/browser/resources/net_internals/main.js
|
| index dbe70a9e335b72b7b1f05f0f4371a0029eca2b4b..2ab766d6d7503c665f87010fe236571104d02b0a 100644
|
| --- a/chrome/browser/resources/net_internals/main.js
|
| +++ b/chrome/browser/resources/net_internals/main.js
|
| @@ -226,7 +226,7 @@ var MainView = (function() {
|
| if (!parsed)
|
| return;
|
|
|
| - if (parsed.tabHash == "#export") {
|
| + if (parsed.tabHash == '#export') {
|
| // The #export tab was removed in M60, after having been
|
| // deprecated since M58. In case anyone *still* has URLs
|
| // bookmarked to this, inform them and redirect.
|
| @@ -237,10 +237,10 @@ var MainView = (function() {
|
| // page load (confirm() is synchronous).
|
| setTimeout(() => {
|
| var navigateToNetExport = confirm(
|
| - "#export was removed\nDo you want to navigate to " +
|
| - "chrome://net-export/ instead?");
|
| + '#export was removed\nDo you want to navigate to ' +
|
| + 'chrome://net-export/ instead?');
|
| if (navigateToNetExport) {
|
| - window.location.href = "chrome://net-export";
|
| + window.location.href = 'chrome://net-export';
|
| return;
|
| }
|
| });
|
|
|