do not open all replies opened when "1 reply" link is clicked (bug 780856)

This commit is contained in:
Chris Van 2012-08-08 00:40:16 -07:00
Родитель 63b95288f4
Коммит 2ad35a4d56
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -142,7 +142,8 @@ section.replies .review.reply {
&.hidden {
display: none;
}
&:not(.hidden) + li:before {
&:not(.hidden) + li:before,
+ li.hidden + li:before {
color: @note-gray;
content: "\00a0\2022\00a0\00a0";
}

Просмотреть файл

@ -194,7 +194,7 @@
// View reply.
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();
}));
})();