Lines 707-713
Link Here
|
707 |
if ( row.phone != null ) library_info.push(_("Ph: ") + row.phone.escapeHtml()); |
707 |
if ( row.phone != null ) library_info.push(_("Ph: ") + row.phone.escapeHtml()); |
708 |
if ( row.fax != null ) library_info.push(_("Fax: ") + row.fax.escapeHtml()); |
708 |
if ( row.fax != null ) library_info.push(_("Fax: ") + row.fax.escapeHtml()); |
709 |
if ( row.email != null ) library_info.push('<a href="mailto:'+encodeURIComponent(row.email)+'">'+row.email.escapeHtml()+'</a>'); |
709 |
if ( row.email != null ) library_info.push('<a href="mailto:'+encodeURIComponent(row.email)+'">'+row.email.escapeHtml()+'</a>'); |
710 |
if ( row.url != null ) library_info.push('<a href="'+encodeURIComponent(row.url)+'">'+row.url.escapeHtml()+'</a>'); |
710 |
if ( row.url != null ) library_info.push('<a href="'+encodeURI(row.url)+'">'+row.url.escapeHtml()+'</a>'); |
711 |
if ( row.notes != null ) library_info.push(_("Notes")+': '+row.notes.escapeHtml()); |
711 |
if ( row.notes != null ) library_info.push(_("Notes")+': '+row.notes.escapeHtml()); |
712 |
return library_info.join('<br/>'); |
712 |
return library_info.join('<br/>'); |
713 |
}, |
713 |
}, |
714 |
- |
|
|