Bug 9803 - question mark in cataloging not clearly a link
When you hover your mouse over the MARC tag help link in cataloging the cursor doesn't change to a standard link pointer because the <a> tag has no "href" attribute. This patch adds a dummy href, "#" so that the cursor will treat it as a link. To test, apply the patch and load the MARC editor with a blank or existing record. The "Show MARC tag documentation links" checkbox must be checked. Hover your mouse over a "?" link in any tag. The cursor should change to a pointer like it does on other links. Signoff comment: The patch works as expected. Besides the cursor change, links still work on every tab. Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
This commit is contained in:
parent
f563783a15
commit
44297c2054
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ function Changefwk(FwkList) {
|
|||
<a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib %] - Click to Expand this Tag" onclick="ExpandField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;">[% innerloo.tag %]</a>
|
||||
[% ELSE %]
|
||||
<span class="tagnum" title="[% innerloo.tag_lib %]">[% innerloo.tag %]
|
||||
[% IF marcflavour != 'NORMARC' %]<a class="marcdocs" onclick="PopupMARCFieldDoc('[% innerloo.tag %]', [% BIG_LOO.number %]); return false;"> ?</a>[% END %]
|
||||
[% IF marcflavour != 'NORMARC' %]<a href="#" class="marcdocs" onclick="PopupMARCFieldDoc('[% innerloo.tag %]', [% BIG_LOO.number %]); return false;"> ?</a>[% END %]
|
||||
</span>
|
||||
[% END %]
|
||||
[% IF ( innerloo.fixedfield ) %]
|
||||
|
|
Loading…
Reference in a new issue