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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-4 / +3 lines)
Lines 359-365 $(document).ready(function() { Link Here
359
                            if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){
359
                            if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){
360
                                span_class = "circ-hlt";
360
                                span_class = "circ-hlt";
361
                            }
361
                            }
362
                            title += " - <span class='" + span_class + " item-note-public'>" + oObj.itemnotes.escapeHtml() + "</span>";
362
                            title += "<span class='divider-dash'> - </span><span class='" + span_class + " item-note-public'>" + oObj.itemnotes.escapeHtml() + "</span>";
363
                        }
363
                        }
364
364
365
                        if ( oObj.itemnotes_nonpublic ) {
365
                        if ( oObj.itemnotes_nonpublic ) {
Lines 367-373 $(document).ready(function() { Link Here
367
                            if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){
367
                            if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){
368
                                span_class = "circ-hlt";
368
                                span_class = "circ-hlt";
369
                            }
369
                            }
370
                            title += " - <span class='" + span_class + " item-note-nonpublic'>" + oObj.itemnotes_nonpublic.escapeHtml() + "</span>";
370
                            title += "<span class='divider-dash'> - </span><span class='" + span_class + " item-note-nonpublic'>" + oObj.itemnotes_nonpublic.escapeHtml() + "</span>";
371
                        }
371
                        }
372
372
373
                        var onsite_checkout = '';
373
                        var onsite_checkout = '';
Lines 376-382 $(document).ready(function() { Link Here
376
                        }
376
                        }
377
377
378
                        if ( oObj.recalled == 1 ) {
378
                        if ( oObj.recalled == 1 ) {
379
                             title += " - <span class='circ-hlt item-recalled'>" +  __("This item has been recalled and the due date updated") + ".</span>";
379
                             title += "<span class='divider-dash'> - </span><span class='circ-hlt item-recalled'>" +  __("This item has been recalled and the due date updated") + ".</span>";
380
                        }
380
                        }
381
381
382
                        title += " "
382
                        title += " "
383
- 

Return to bug 33876