mirror of https://github.com/gogs/gogs.git
parent
4f70ab8e27
commit
40214ef109
|
@ -425,7 +425,7 @@ function initRepository() {
|
|||
if (confirm($this.data('locale'))) {
|
||||
$.post($this.data('url'), {
|
||||
"_csrf": csrf
|
||||
}).success(function () {
|
||||
}).done(function () {
|
||||
$('#' + $this.data('comment-id')).remove();
|
||||
});
|
||||
}
|
||||
|
@ -1310,7 +1310,7 @@ $(document).ready(function () {
|
|||
$.post($this.data('url'), {
|
||||
"_csrf": csrf,
|
||||
"id": $this.data("id")
|
||||
}).success(function (data) {
|
||||
}).done(function (data) {
|
||||
window.location.href = data.redirect;
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue