Skip to content

Commit c766a82

Browse files
author
Igor Šimko
committed
Fix changes propagation to native editor
1 parent 01c784e commit c766a82

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

client/client-bundle.js

+5-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/client-bundle.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/module.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,11 @@ function PluginService(eventBus, canvas) {
157157
}
158158

159159
function writeToNativeEditor(cMirror) {
160-
document.querySelector('#cam-script-val[custom-id="' + cMirror.options.customId + '"]').value = cMirror.getValue();
161-
document.querySelector('#cam-script-val[custom-id="' + cMirror.options.customId + '"]').click();
160+
var cmEditor = document.querySelector('#cam-script-val[custom-id="' + cMirror.options.customId + '"]')
161+
cmEditor.value = cMirror.getValue();
162+
var evt = document.createEvent("Events");
163+
evt.initEvent("change", true, true);
164+
cmEditor.dispatchEvent(evt);
162165
}
163166
}
164167

0 commit comments

Comments
 (0)