Lines 108-114
Link Here
|
108 |
} |
108 |
} |
109 |
itemString += ( item.address ? item.address.escapeHtml() : "" ) + " " |
109 |
itemString += ( item.address ? item.address.escapeHtml() : "" ) + " " |
110 |
+ ( item.city ? item.city.escapeHtml() : "" ) + " " |
110 |
+ ( item.city ? item.city.escapeHtml() : "" ) + " " |
111 |
+ ( item.zipcode ? item.city.escapeHtml() : "" ) + " " |
111 |
+ ( item.zipcode ? item.zipcode.escapeHtml() : "" ) + " " |
112 |
+ ( item.country ? item.country.escapeHtml() : "" ) |
112 |
+ ( item.country ? item.country.escapeHtml() : "" ) |
113 |
+ "</small></a>"; |
113 |
+ "</small></a>"; |
114 |
return $( "<li></li>" ) |
114 |
return $( "<li></li>" ) |
115 |
- |
|
|