Fix reply on code review (#10227)
Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
9ff4e1d2d9
commit
17656021f1
2 changed files with 10 additions and 1 deletions
|
@ -3559,6 +3559,14 @@ window.cancelCodeComment = function (btn) {
|
|||
form.closest('.comment-code-cloud').remove();
|
||||
}
|
||||
};
|
||||
|
||||
window.submitReply = function (btn) {
|
||||
const form = $(btn).closest('form');
|
||||
if (form.length > 0 && form.hasClass('comment-form')) {
|
||||
form.submit();
|
||||
}
|
||||
};
|
||||
|
||||
window.onOAuthLoginClick = function () {
|
||||
const oauthLoader = $('#oauth2-login-loader');
|
||||
const oauthNav = $('#oauth2-login-navigator');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue