do not open all replies opened when "1 reply" link is clicked (bug 780856)
This commit is contained in:
Родитель
63b95288f4
Коммит
2ad35a4d56
|
@ -142,7 +142,8 @@ section.replies .review.reply {
|
||||||
&.hidden {
|
&.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
&:not(.hidden) + li:before {
|
&:not(.hidden) + li:before,
|
||||||
|
+ li.hidden + li:before {
|
||||||
color: @note-gray;
|
color: @note-gray;
|
||||||
content: "\00a0\2022\00a0\00a0";
|
content: "\00a0\2022\00a0\00a0";
|
||||||
}
|
}
|
||||||
|
|
|
@ -194,7 +194,7 @@
|
||||||
|
|
||||||
// View reply.
|
// View reply.
|
||||||
z.page.on('click', '.review .view-reply', _pd(function() {
|
z.page.on('click', '.review .view-reply', _pd(function() {
|
||||||
$(this).closest('.review').siblings('.replies').find('.reply').toggle();
|
$(this).closest('.review').next('.replies').find('.reply').toggle();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче