Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3279)

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js

Issue 2445003002: Reland: Make ChromeVox Next the default ChromeVox experience (Closed)
Patch Set: speculative fixes Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
index da65208f2ba68c0b2d373f8c8b50f83dc116c6db..9c06328cc2428098cc4c9e5cb0989e5c66094060 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
@@ -352,7 +352,7 @@ Background.prototype = {
if (opt_setValue !== undefined)
useNext = opt_setValue;
else
- useNext = localStorage['useNext'] != 'true';
+ useNext = localStorage['useNext'] !== 'true';
localStorage['useNext'] = useNext;
if (useNext)

Powered by Google App Engine
This is Rietveld 408576698