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