|
Lines 303-311
Link Here
|
| 303 |
.append("<h1>" + _("Item search results") + "</h1>") |
303 |
.append("<h1>" + _("Item search results") + "</h1>") |
| 304 |
.append($('<p>').append(advSearchLink)) |
304 |
.append($('<p>').append(advSearchLink)) |
| 305 |
.append(editSearchAndExportLinks); |
305 |
.append(editSearchAndExportLinks); |
|
|
306 |
|
| 307 |
var results_footer = $('<p>') |
| 308 |
.addClass('hint') |
| 309 |
.html(_("You can use the following wildcard characters: % _")); |
| 310 |
|
| 306 |
$('#results-wrapper').empty() |
311 |
$('#results-wrapper').empty() |
| 307 |
.append(results_heading) |
312 |
.append(results_heading) |
| 308 |
.append(table); |
313 |
.append(table) |
|
|
314 |
.append(results_footer); |
| 309 |
|
315 |
|
| 310 |
var params = []; |
316 |
var params = []; |
| 311 |
$form.find('select').not(':disabled').find('option:selected').each(function () { |
317 |
$form.find('select').not(':disabled').find('option:selected').each(function () { |
| 312 |
- |
|
|