1
0
Fork 0
forked from forgejo/forgejo

Add support for "Show/Hide outdated"

Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
Jonas Franz 2018-05-15 16:34:19 +02:00
parent 7c1edf93ff
commit 8bb51135b6
No known key found for this signature in database
GPG key ID: 506AEEBE80BEDECD
6 changed files with 38 additions and 8 deletions

View file

@ -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;
}