public: fix jquery3.x syntax error (#5951)

$.post().success -> $.post().done
pull/5952/head
guan 2020-02-28 22:52:26 +08:00 committed by GitHub
parent 4f70ab8e27
commit 40214ef109
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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