|
Lines 800-806
function patron_autocomplete(node, options) {
Link Here
|
| 800 |
.append( |
800 |
.append( |
| 801 |
"" + |
801 |
"" + |
| 802 |
(item.link ? '<a href="' + item.link + '">' : "<a>") + |
802 |
(item.link ? '<a href="' + item.link + '">' : "<a>") + |
| 803 |
$patron_to_html(item, { display_cardnumber: true }) + |
803 |
$patron_to_html(item, { |
|
|
804 |
display_cardnumber: true, |
| 805 |
invert_name: true, |
| 806 |
}) + |
| 804 |
" " + |
807 |
" " + |
| 805 |
(item.date_of_birth |
808 |
(item.date_of_birth |
| 806 |
? $date(item.date_of_birth) + |
809 |
? $date(item.date_of_birth) + |
| 807 |
- |
|
|