X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/blobdiff_plain/358cf2e4856c32ca8ad0bdd5283c4cf4bc5df13a..a4d91ff557a71d80f997b03b213acf1664e64ace:/src/main.js diff --git a/src/main.js b/src/main.js index a8269c6..3b17bed 100644 --- a/src/main.js +++ b/src/main.js @@ -1,43 +1,5 @@ import App from './App.svelte'; -import { refresh_page } from './lib/stores.js'; - -let myhistory = []; const app = new App({ // eslint-disable-line no-unused-vars target: document.body }); - - -function is_relative_url(url) { - if (!url) return false; - if (url.indexOf('?') === 0) return true; - if (url.indexOf('/') === 0) return true; - if (url.indexOf('#') === 0) return false; - if (url.match(/^http/)) return false; - if (!url.match(/\.html/)) return true; - - return false; -} - - -// load page after click on relative 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) { - if (target.matches('a')) { - - var target_url = target.href; - - if (!is_relative_url(target_url)) return; - - e.preventDefault(); - e.stopPropagation(); - - window.history.pushState(myhistory, '', target_url); - - refresh_page(); - break; - } - } -});