@@ -, +, @@ styled in patron holds list - On the checkout page, view the 'Holds' tab and confirm that there is a correctly-styled 'Suspend' button for each hold. - Verify that the button works correctly and looks correct when a hold has been suspended. --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -133,11 +133,11 @@ $(document).ready(function() { if ( oObj.found ) { return ""; } else if ( oObj.suspend == 1 ) { - return "" - + " " + RESUME + ""; + return "" + + " " + RESUME + ""; } else { - return "" - + " " + SUSPEND + ""; + return "" + + " " + SUSPEND + ""; } } } --