Bug 24725: (QA follow-up) Add missing spaces between elements on claims tab
There was a missing space between the title and the barcode. Also added a space between title and author. Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
2fe29c6574
commit
d5a1a82a9b
1 changed files with 2 additions and 2 deletions
|
@ -905,9 +905,9 @@ $(document).ready(function() {
|
||||||
+ ( oObj.enumchron || "" )
|
+ ( oObj.enumchron || "" )
|
||||||
+ '</a>';
|
+ '</a>';
|
||||||
if ( oObj.author ) {
|
if ( oObj.author ) {
|
||||||
title += 'by ' + oObj.author;
|
title += ' by ' + oObj.author;
|
||||||
}
|
}
|
||||||
title += '<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
|
title += ' <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
|
||||||
|
|
||||||
return title;
|
return title;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue