fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Translators as authors.
[wolnelektury.git]
/
src
/
wolnelektury
/
static
/
js
/
search.js
diff --git
a/src/wolnelektury/static/js/search.js
b/src/wolnelektury/static/js/search.js
index
e3e50b7
..
536164b
100644
(file)
--- a/
src/wolnelektury/static/js/search.js
+++ b/
src/wolnelektury/static/js/search.js
@@
-46,14
+46,19
@@
var __bind = function (self, fn) {
render_item_2022: function (ul, item) {
var label;
render_item_2022: function (ul, item) {
var label;
- if (item['author']) {
+ var $label = $("<li><a><div></div><span></span></a></li>");
+ if (item.img) {
+ $('div', $label).append($('<img>').attr('src', item.img));
+ }
+ if (item.author) {
label = '<cite>' + item.label + '</cite>, ' + item['author'];
} else {
label = item.label;
}
label = '<cite>' + item.label + '</cite>, ' + item['author'];
} else {
label = item.label;
}
- return $("<li></li>")
- .append('<a href="'+this.options.host+item.url+'">'+label+'</a>')
- .appendTo(ul);
+ $('span', $label).html(label);
+ $label.addClass('type-' + item.type);
+ $label.appendTo(ul);
+ return $label;
},
destroy: function() {
},
destroy: function() {