forked from forgejo/forgejo
Add support for "Show/Hide outdated"
Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
parent
7c1edf93ff
commit
8bb51135b6
6 changed files with 38 additions and 8 deletions
|
@ -762,6 +762,23 @@ function initRepository() {
|
|||
}
|
||||
|
||||
function initPullRequestReview() {
|
||||
$('.show-outdated').on('click', function (e) {
|
||||
e.preventDefault();
|
||||
var id = $(this).data('comment');
|
||||
$(this).addClass("hide");
|
||||
$("#code-comments-" + id).removeClass('hide');
|
||||
$("#code-preview-" + id).removeClass('hide');
|
||||
$("#hide-outdated-" + id).removeClass('hide');
|
||||
});
|
||||
|
||||
$('.hide-outdated').on('click', function (e) {
|
||||
e.preventDefault();
|
||||
var id = $(this).data('comment');
|
||||
$(this).addClass("hide");
|
||||
$("#code-comments-" + id).addClass('hide');
|
||||
$("#code-preview-" + id).addClass('hide');
|
||||
$("#show-outdated-" + id).removeClass('hide');
|
||||
});
|
||||
if ($('.repository.pull.diff').length == 0) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue