aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/search-query-parser.js
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2019-11-11 01:43:35 +0200
committersiikamiika <siikamiika@users.noreply.github.com>2019-11-23 17:49:25 +0200
commitb336ab3a9a0a2ac9a569ae217b506ceeeab6fda0 (patch)
tree2862df3a3a1ebe110747dd0046f6d3cd4c6deb5b /ext/bg/js/search-query-parser.js
parent8d9a635d5c01e9a954284c82d1cddfab89f8dd5b (diff)
use const
Diffstat (limited to 'ext/bg/js/search-query-parser.js')
-rw-r--r--ext/bg/js/search-query-parser.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/search-query-parser.js b/ext/bg/js/search-query-parser.js
index 2e17688e..f8e53963 100644
--- a/ext/bg/js/search-query-parser.js
+++ b/ext/bg/js/search-query-parser.js
@@ -113,9 +113,9 @@ class QueryParser {
this.queryParser.innerHTML = contents.join('<hr>');
- this.queryParser.querySelectorAll('.query-parser-char').forEach((charElement) => {
+ for (const charElement of this.queryParser.querySelectorAll('.query-parser-char')) {
this.activateScanning(charElement);
- });
+ }
this.search.setSpinnerVisible(false);
}
@@ -133,9 +133,9 @@ class QueryParser {
preview: true
});
- this.queryParser.querySelectorAll('.query-parser-char').forEach((charElement) => {
+ for (const charElement of this.queryParser.querySelectorAll('.query-parser-char')) {
this.activateScanning(charElement);
- });
+ }
}
activateScanning(element) {