diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-29 23:52:35 +0800 |
---|---|---|
committer | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-29 23:52:35 +0800 |
commit | 344b784d6943ac033d2ce755b6eee34ffc0401e4 (patch) | |
tree | bbb37e7857c293183486a31f281a6bf0ce41b4bd /public/js | |
parent | 333998509f270c8b10ee5bba063c7ec1dab0f09c (diff) |
js: fix jQuery error
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/gogs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js index 2d2aa091..d04008c5 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -1282,7 +1282,7 @@ $(document).ready(function () { headers: { 'X-AJAX': "true" } - }).success(function (data, status, request) { + }).done(function (data, status, request) { $(data).insertBefore($this); // Update new URL or remove self if no more feeds |