Lines 118-124
function search( offset ) {
Link Here
|
118 |
results.push( prod.title ); |
118 |
results.push( prod.title ); |
119 |
if ( prod.subtitle ) results.push( ', ', prod.subtitle ); |
119 |
if ( prod.subtitle ) results.push( ', ', prod.subtitle ); |
120 |
results.push( '</a>' ); |
120 |
results.push( '</a>' ); |
121 |
results.push( '<p>' + _("by") + ' ', prod.primaryCreator.name, '</p>' ); |
121 |
if ( prod.primaryCreator ) results.push( '<p>' + _("by") + ' ', prod.primaryCreator.name, '</p>' ); |
122 |
results.push( '<span class="results_summary mediatype"><span class="label">' + _("Type:") + ' </span>', prod.mediaType, '</span>' ); |
122 |
results.push( '<span class="results_summary mediatype"><span class="label">' + _("Type:") + ' </span>', prod.mediaType, '</span>' ); |
123 |
|
123 |
|
124 |
if ( prod.starRating ) { |
124 |
if ( prod.starRating ) { |
125 |
- |
|
|