Commit ce7ad040 authored by David Tseng's avatar David Tseng Committed by Commit Bot

Fixes paths to log page

RELNOTES=Fixes developer logging page (Search+o, w)

Bug: none
Change-Id: I2829ef09c530d8fc8594d7bd5fd1704b3bafa11e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128939Reviewed-by: default avatarAkihiro Ota <akihiroota@chromium.org>
Commit-Queue: David Tseng <dtseng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#754777}
parent 2fd16e61
...@@ -120,7 +120,7 @@ CommandHandler.onCommand = function(command) { ...@@ -120,7 +120,7 @@ CommandHandler.onCommand = function(command) {
chrome.windows.create(explorerPage); chrome.windows.create(explorerPage);
break; break;
case 'showLogPage': case 'showLogPage':
const logPage = {url: 'background/logging/log.html'}; const logPage = {url: 'chromevox/background/logging/log.html'};
chrome.tabs.create(logPage); chrome.tabs.create(logPage);
break; break;
case 'enableLogging': { case 'enableLogging': {
......
...@@ -136,7 +136,7 @@ OptionsPage = class { ...@@ -136,7 +136,7 @@ OptionsPage = class {
}); });
$('openDeveloperLog').addEventListener('click', function(evt) { $('openDeveloperLog').addEventListener('click', function(evt) {
const logPage = {url: 'background/logging/log.html'}; const logPage = {url: 'chromevox/background/logging/log.html'};
chrome.tabs.create(logPage); chrome.tabs.create(logPage);
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment