From 84635938036c813a2337dfbfd97ffa8b0fe10ba6 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Thu, 10 Aug 2023 13:55:25 +0200 Subject: [PATCH] Only "linked" parameters should have pointer cursor (#742) If a parameter has no target to scroll to, it should not suggest otherwise by changing the cursor to a pointer. Since the scrolling is done via JS, we should also change the cursor via JS.[1] While we're at it, we also fix the potential JS error where we call the `.offset()` method on an empty `jQuery` object. [1] --- js/common.js | 33 +++++++++++++++++++++++---------- styles/theme-base.css | 3 --- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/js/common.js b/js/common.js index 02076387e..052c34e74 100644 --- a/js/common.js +++ b/js/common.js @@ -368,16 +368,29 @@ $(document).ready(function () { $(this).append(" ΒΆ"); }); - $('.refentry code.parameter').click(function (event) { - var id = $(this).text().replace(/^&?(\.\.\.)?\$?/g, ''); - var offsetTop = $('.parameters, .options').find('.parameter').filter(function () { - return $(this).text().trim() === id; // https://bugs.php.net/bug.php?id=74493 - }).offset().top - 52; - $.scrollTo({ - top: offsetTop, - left: 0 - }, 400); - }); + function findParameter(elt) { + var id = $(elt).text().replace(/^&?(\.\.\.)?\$?/g, ''); + return $('.parameters, .options').find('.parameter').filter(function () { + return $(elt).text().trim() === id; // https://bugs.php.net/bug.php?id=74493 + }).first(); + } + + $('.refentry code.parameter') + .each(function () { + var param = findParameter(this); + if (param.length) { + $(this).css('cursor', 'pointer'); + } + }) + .click(function () { + var param = findParameter(this); + if (param.length) { + $.scrollTo({ + top: param.offset().top - 52, + left: 0 + }, 400); + } + }); $('h1[id], h2[id], h3[id], h4[id]').each(function () { var $this = $(this); diff --git a/styles/theme-base.css b/styles/theme-base.css index ae95208f2..756f4fbd3 100644 --- a/styles/theme-base.css +++ b/styles/theme-base.css @@ -1220,9 +1220,6 @@ header.title { /* {{{ General styles (p, parameters, initializers, ...) */ -.refsect1 .parameter { - cursor:pointer; -} .refsect1 dt { height:1.5rem; }