Co-authored-by: zeripath <art27@cantab.net>tags/v1.21.12.1
| @@ -27,7 +27,8 @@ | |||||
| <span class="markdown-info">{{svg "octicon-markdown" 16}} {{$.root.i18n.Tr "repo.diff.comment.markdown_info"}}</span> | <span class="markdown-info">{{svg "octicon-markdown" 16}} {{$.root.i18n.Tr "repo.diff.comment.markdown_info"}}</span> | ||||
| <div class="ui right floated"> | <div class="ui right floated"> | ||||
| {{if $.reply}} | {{if $.reply}} | ||||
| <button name="reply" value="{{$.reply}}" class="ui submit green tiny button btn-reply">{{$.root.i18n.Tr "repo.diff.comment.reply"}}</button> | |||||
| <input type="hidden" name="reply" value="{{$.reply}}"> | |||||
| <button class="ui submit green tiny button btn-reply" onclick="window.submitReply(this);">{{$.root.i18n.Tr "repo.diff.comment.reply"}}</button> | |||||
| {{else}} | {{else}} | ||||
| {{if $.root.CurrentReview}} | {{if $.root.CurrentReview}} | ||||
| <button name="is_review" value="true" type="submit" | <button name="is_review" value="true" type="submit" | ||||
| @@ -3559,6 +3559,14 @@ window.cancelCodeComment = function (btn) { | |||||
| form.closest('.comment-code-cloud').remove(); | 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 () { | window.onOAuthLoginClick = function () { | ||||
| const oauthLoader = $('#oauth2-login-loader'); | const oauthLoader = $('#oauth2-login-loader'); | ||||
| const oauthNav = $('#oauth2-login-navigator'); | const oauthNav = $('#oauth2-login-navigator'); | ||||