1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-23 13:43:17 +00:00

Fix issues shown by codacy

This commit is contained in:
Virgil Grigoras 2019-02-26 11:17:06 +01:00
parent 15aa49e163
commit f5cf62f209

View File

@ -205,11 +205,11 @@ $(function() {
$(".discover .row").isotope("layout");
});
$(".author-expand").click(function() {
$(this).parent().find('a.author-name').slice($(this).data("authors-max")).toggle();
$(this).parent().find('span.author-hidden-divider').toggle();
$(this).html()==$(this).data("collapse-caption")? $(this).html('(...)'):$(this).html($(this).data("collapse-caption"));
$(".discover .row").isotope("layout");
});
$(".author-expand").click(function() {
$(this).parent().find("a.author-name").slice($(this).data("authors-max")).toggle();
$(this).parent().find("span.author-hidden-divider").toggle();
$(this).html()===$(this).data("collapse-caption") ? $(this).html("(...)") : $(this).html($(this).data("collapse-caption"));
$(".discover .row").isotope("layout");
});
});