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

Unified Diff: chrome/browser/resources/chromeos/switch_access/options.js

Issue 2921783003: WebUI: Fix/suppress some existing violations of no-restricted-globals. (Closed)
Patch Set: More 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/switch_access/options.js
diff --git a/chrome/browser/resources/chromeos/switch_access/options.js b/chrome/browser/resources/chromeos/switch_access/options.js
index 0f935e8efb7ee6c3651fea30685700eac621a7e3..12f1ea51b33c374773c2544aa10de2805f6608ad 100644
--- a/chrome/browser/resources/chromeos/switch_access/options.js
+++ b/chrome/browser/resources/chromeos/switch_access/options.js
@@ -9,7 +9,9 @@
* @return {Element}
*/
let $ = function(id) {
+ /* eslint-disable no-restricted-properties */
return document.getElementById(id);
+ /* eslint-enable no-restricted-properties */
};
/**

Powered by Google App Engine
This is Rietveld 408576698