]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/main.js
eslint: remove 3 unused variables (#57)
[nominatim-ui.git] / src / main.js
index f320d0b3e9e2bbdf0ecd4c53de8489ef39de7129..a8269c6c44c729102b49b416de6c293a5afbf83a 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;
@@ -41,8 +41,3 @@ document.addEventListener('click', function (e) {
     }
   }
 });
-
-// deal with back-button and other user action
-window.onpopstate = function () {
-  refresh_page();
-};