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

Unified Diff: chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js

Issue 2943193002: Run clang-format on .js files in c/b/r/chromeos/chromevox (Closed)
Patch Set: Created 3 years, 6 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/speech_rules/mathml_store_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js b/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js
index 7c1d4010d869d0c75c9c2483576ae433ae167c0b..3a36b925541cee7bf3cdc39a0529a3f5dd8619e1 100644
--- a/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js
@@ -124,9 +124,9 @@ cvox.MathmlStoreUtil.nextSeparatorFunction = function(separators) {
if (separators.match(/^\s+$/)) {
return null;
} else {
- var sepList = separators.replace(/\s/g, '')
- .split('')
- .filter(function(x) {return x;});
+ var sepList = separators.replace(/\s/g, '').split('').filter(function(x) {
+ return x;
+ });
}
} else {
// When no separator is given MathML uses comma as default.

Powered by Google App Engine
This is Rietveld 408576698