Commit 74438cd1 authored by Fatih Acet's avatar Fatih Acet

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

parent 8266c78c
...@@ -237,9 +237,12 @@ window.DropzoneInput = (function() { ...@@ -237,9 +237,12 @@ window.DropzoneInput = (function() {
}; };
const insertToTextArea = function(filename, url) { const insertToTextArea = function(filename, url) {
return $(child).val(function(index, val) { const $child = $(child);
$child.val(function(index, val) {
return val.replace(`{{${filename}}}`, url); return val.replace(`{{${filename}}}`, url);
}); });
$child.trigger('change');
}; };
const appendToTextArea = function(url) { 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