@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -239,18 +239,12 @@ $(document).ready(function() { } if ( oObj.itemnotes ) { - var span_class = ""; - if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { - span_class = "circ-hlt"; - } + var span_class = "text-muted"; title += " - " + oObj.itemnotes + "" } if ( oObj.itemnotes_nonpublic ) { - var span_class = ""; - if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { - span_class = "circ-hlt"; - } + var span_class = "text-danger"; title += " - " + oObj.itemnotes_nonpublic + "" } --