Fix flash of previous content in kanban codemirror

pull/1/head
yflory 5 years ago
parent 441b31969c
commit 17be91f640

@ -234,14 +234,14 @@ define([
setValue: function (val, preserveCursor) {
if (isBoard) { return; }
if (!preserveCursor) {
setTimeout(function () {
editor.setValue(val || ' ');
editor.setValue(val || '');
editor.save();
});
editor.setValue(val || '');
editor.save();
} else {
SFCodeMirror.setValueAndCursor(editor, editor.getValue(), val || '');
}
},
refresh: function () {
editor.refresh();
}
};
editor.on('change', function () {
@ -421,6 +421,7 @@ define([
editModal[type].setValue(item[type]);
});
UI.openCustomModal(editModal.modal);
editModal.body.refresh();
};
var getBoardEditModal = function (framework, kanban, id) {
// Create modal if needed

Loading…
Cancel
Save