]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/main.js
Add eslint linter (#52)
[nominatim-ui.git] / src / main.js
index f320d0b3e9e2bbdf0ecd4c53de8489ef39de7129..f0450596a80e51b6dee2f5a41f805bba9debf751 100644 (file)
@@ -3,7 +3,7 @@ import { refresh_page } from './lib/stores.js';
 
 let myhistory = [];
 
-const app = new App({
+const app = new App({ // eslint-disable-line no-unused-vars
   target: document.body
 });
 
@@ -24,7 +24,7 @@ function is_relative_url(url) {
 document.addEventListener('click', function (e) {
 
   // loop parent nodes from the target to the delegation node
-  for (var target = e.target; target && target != this; target = target.parentNode) {
+  for (var target = e.target; target && target !== this; target = target.parentNode) {
     if (target.matches('a')) {
 
       var target_url = target.href;