forked from forgejo/forgejo
This reverts commit 661d3d28e9
.
This commit is contained in:
parent
72b3681648
commit
4d0a72a271
10 changed files with 34 additions and 39 deletions
|
@ -28,7 +28,7 @@ export function initRepoIssueTimeTracking() {
|
|||
});
|
||||
$(document).on('click', 'button.issue-delete-time', function () {
|
||||
const sel = `.issue-delete-time-modal[data-id="${$(this).data('id')}"]`;
|
||||
$.find(sel).modal({
|
||||
$(sel).modal({
|
||||
duration: 200,
|
||||
onApprove() {
|
||||
$(`${sel} form`).trigger('submit');
|
||||
|
@ -535,7 +535,7 @@ export function initRepoIssueReferenceIssue() {
|
|||
const content = $(`#comment-${$this.data('target')}`).text();
|
||||
const poster = $this.data('poster-username');
|
||||
const reference = $this.data('reference');
|
||||
const $modal = $.find($this.data('modal'));
|
||||
const $modal = $($this.data('modal'));
|
||||
$modal.find('textarea[name="content"]').val(`${content}\n\n_Originally posted by @${poster} in ${reference}_`);
|
||||
$modal.modal('show');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue