This commit is contained in:
Suzanne Soy 2021-06-23 18:25:33 +01:00
parent 41fadf54ba
commit 8b95c11e98

View File

@ -938,9 +938,9 @@ function ___functions_to_html(section) {
var ul = document.createElement('ul');
var ta = section.getElementsByTagName('textarea');
for (var j = 0; j < ta.length; j++) {
console.log('toCodeMirror:', ta[j], ta[j].getAttribute('id'), section);
if (___ancestor(ta[j], 'section') == section) {
var lines = ta[j].value.split('\n');
console.log('toCodeMirror:', ta[j]);
var ret = ___toCodeMirror(ta[j]);
var editor = ret.editor;
var editor_id = ret.editor_id;