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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/dom_util.js

Issue 2902033002: WebUI: Fix violations of no-extra-semi lint rule. (Closed)
Patch Set: Created 3 years, 7 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/common/dom_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/dom_util.js b/chrome/browser/resources/chromeos/chromevox/common/dom_util.js
index c8d4fd69e689bf2c81eba748818bb7df26068555..15e43ec6fd4763256323efae81e5c4a8e64bfd38 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/dom_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/dom_util.js
@@ -2488,7 +2488,7 @@ cvox.DomUtil.isMathJax = function(node) {
return (n.tagName == 'SPAN' &&
n.className.split(' ').some(function(x) {
return x.toLowerCase() == cl;}));
- };
+ }
if (isSpanWithClass(node, 'math')) {
var ancestors = cvox.DomUtil.getAncestors(node);
return ancestors.some(function(x) {return isSpanWithClass(x, 'mathjax');});

Powered by Google App Engine
This is Rietveld 408576698