|
Lines 350-356
$(document).ready(function() {
Link Here
|
| 350 |
if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){ |
350 |
if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){ |
| 351 |
span_class = "circ-hlt"; |
351 |
span_class = "circ-hlt"; |
| 352 |
} |
352 |
} |
| 353 |
title += " - <span class='" + span_class + " item-note-public'>" + oObj.itemnotes.escapeHtml() + "</span>"; |
353 |
title += "<span class='seperator'> - </span><span class='" + span_class + " item-note-public'>" + oObj.itemnotes.escapeHtml() + "</span>"; |
| 354 |
} |
354 |
} |
| 355 |
|
355 |
|
| 356 |
if ( oObj.itemnotes_nonpublic ) { |
356 |
if ( oObj.itemnotes_nonpublic ) { |
|
Lines 358-364
$(document).ready(function() {
Link Here
|
| 358 |
if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){ |
358 |
if ( flatpickr.formatDate( new Date(oObj.issuedate), "Y-m-d" ) == ymd ){ |
| 359 |
span_class = "circ-hlt"; |
359 |
span_class = "circ-hlt"; |
| 360 |
} |
360 |
} |
| 361 |
title += " - <span class='" + span_class + " item-note-nonpublic'>" + oObj.itemnotes_nonpublic.escapeHtml() + "</span>"; |
361 |
title += "<span class='seperator'> - </span><span class='" + span_class + " item-note-nonpublic'>" + oObj.itemnotes_nonpublic.escapeHtml() + "</span>"; |
| 362 |
} |
362 |
} |
| 363 |
|
363 |
|
| 364 |
var onsite_checkout = ''; |
364 |
var onsite_checkout = ''; |
|
Lines 367-373
$(document).ready(function() {
Link Here
|
| 367 |
} |
367 |
} |
| 368 |
|
368 |
|
| 369 |
if ( oObj.recalled == 1 ) { |
369 |
if ( oObj.recalled == 1 ) { |
| 370 |
title += " - <span class='circ-hlt item-recalled'>" + __("This item has been recalled and the due date updated") + ".</span>"; |
370 |
title += "<span class='seperator'> - </span><span class='circ-hlt item-recalled'>" + __("This item has been recalled and the due date updated") + ".</span>"; |
| 371 |
} |
371 |
} |
| 372 |
|
372 |
|
| 373 |
title += " " |
373 |
title += " " |
| 374 |
- |
|
|