Lines 239-245
$(document).ready(function() {
Link Here
|
239 |
} |
239 |
} |
240 |
|
240 |
|
241 |
if ( oObj.itemnotes ) { |
241 |
if ( oObj.itemnotes ) { |
242 |
var span_class = ""; |
242 |
var span_class = "text-muted"; |
243 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
243 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
244 |
span_class = "circ-hlt"; |
244 |
span_class = "circ-hlt"; |
245 |
} |
245 |
} |
Lines 247-253
$(document).ready(function() {
Link Here
|
247 |
} |
247 |
} |
248 |
|
248 |
|
249 |
if ( oObj.itemnotes_nonpublic ) { |
249 |
if ( oObj.itemnotes_nonpublic ) { |
250 |
var span_class = ""; |
250 |
var span_class = "text-danger"; |
251 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
251 |
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { |
252 |
span_class = "circ-hlt"; |
252 |
span_class = "circ-hlt"; |
253 |
} |
253 |
} |
254 |
- |
|
|