|
Lines 258-264
$(document).ready(function() {
Link Here
|
| 258 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
258 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
| 259 |
span_class = "circ-hlt"; |
259 |
span_class = "circ-hlt"; |
| 260 |
} |
260 |
} |
| 261 |
title += " - <span class='" + span_class + "'>" + oObj.itemnotes + "</span>"; |
261 |
title += " - <span class='" + span_class + " item-note-public'>" + oObj.itemnotes + "</span>"; |
| 262 |
} |
262 |
} |
| 263 |
|
263 |
|
| 264 |
if ( oObj.itemnotes_nonpublic ) { |
264 |
if ( oObj.itemnotes_nonpublic ) { |
|
Lines 266-272
$(document).ready(function() {
Link Here
|
| 266 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
266 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
| 267 |
span_class = "circ-hlt"; |
267 |
span_class = "circ-hlt"; |
| 268 |
} |
268 |
} |
| 269 |
title += " - <span class='" + span_class + "'>" + oObj.itemnotes_nonpublic + "</span>"; |
269 |
title += " - <span class='" + span_class + " item-note-nonpublic'>" + oObj.itemnotes_nonpublic + "</span>"; |
| 270 |
} |
270 |
} |
| 271 |
|
271 |
|
| 272 |
var onsite_checkout = ''; |
272 |
var onsite_checkout = ''; |
| 273 |
- |
|
|