Commit 9f1c9b3d authored by Filipa Lacerda's avatar Filipa Lacerda

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
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment