]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
dont intercept links in last-updated page section
authormarc tobias <mtmail@gmx.net>
Tue, 1 Sep 2020 15:25:15 +0000 (17:25 +0200)
committermarc tobias <mtmail@gmx.net>
Tue, 1 Sep 2020 15:25:15 +0000 (17:25 +0200)
dist/assets/js/nominatim-ui.js
src/assets/js/controller.js

index 4dd8d01ae8e4f840c0cb92b24d45b666c26e9111..4b1ba8a880e79b365b61b730ae8d9412d63d9f95 100644 (file)
@@ -843,7 +843,7 @@ jQuery(document).ready(function () {
   $(document).on('click', 'a', function (e) {
     var target_url = $(this).attr('href');
     if (!is_relative_url(target_url)) return;
-    if ($(this).parents('#last-updated')) return;
+    if ($(this).parents('#last-updated').length !== 0) return;
 
     e.preventDefault();
     e.stopPropagation();
index 9975ba7011c6686f6641a233bd4ed88897132338..a9cb80e58b306e1b3de3ff3230ef794d656b6443 100644 (file)
@@ -63,7 +63,7 @@ jQuery(document).ready(function () {
   $(document).on('click', 'a', function (e) {
     var target_url = $(this).attr('href');
     if (!is_relative_url(target_url)) return;
-    if ($(this).parents('#last-updated')) return;
+    if ($(this).parents('#last-updated').length !== 0) return;
 
     e.preventDefault();
     e.stopPropagation();