Skip to content
Snippets Groups Projects
Commit 9f1c9b3d authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Merge branch 'acet-fix-paste-on-comment-form' into 'master'

Trigger change event of the markdown textarea to allow Vue catch the programmatic changes.

Closes #38441

See merge request gitlab-org/gitlab-ce!14539
parents c47b33ad 74438cd1
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -237,9 +237,12 @@ window.DropzoneInput = (function() {
};
 
const insertToTextArea = function(filename, url) {
return $(child).val(function(index, val) {
const $child = $(child);
$child.val(function(index, val) {
return val.replace(`{{${filename}}}`, url);
});
$child.trigger('change');
};
 
const appendToTextArea = function(url) {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment