View | Details | Raw Unified | Return to bug 13024
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-1 / +8 lines)
Lines 511-516 $(document).ready(function() { Link Here
511
                                title += " - <span class='" + span_class + "'>" + oObj.itemnotes + "</span>"
511
                                title += " - <span class='" + span_class + "'>" + oObj.itemnotes + "</span>"
512
                            }
512
                            }
513
513
514
                            if ( oObj.itemnotes_nonpublic ) {
515
                                var span_class = "";
516
                                if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) {
517
                                    span_class = "circ-hlt";
518
                                }
519
                                title += " - <span class='" + span_class + "'>" + oObj.itemnotes_nonpublic + "</span>"
520
                            }
521
514
                            var onsite_checkout = '';
522
                            var onsite_checkout = '';
515
                            if ( oObj.onsite_checkout == 1 ) {
523
                            if ( oObj.onsite_checkout == 1 ) {
516
                                onsite_checkout += " <span class='onsite_checkout'>(" + INHOUSE_USE + ")</span>";
524
                                onsite_checkout += " <span class='onsite_checkout'>(" + INHOUSE_USE + ")</span>";
517
- 

Return to bug 13024