Изменить 'ace/index.html'

This commit is contained in:
2019-09-03 19:02:48 +02:00
parent 39b46fc105
commit a85e09aa28

View File

@@ -39,7 +39,9 @@
showGutter: false,
autoScrollEditorIntoView: true
})
editor.getSession().setValue(localStorage.getItem("acetest"));
editor.setValue(localStorage.getItem("acetest"));
editor.clearSelection();
editor.getSession().on('change', function () {
localStorage.setItem("acetest", editor.getSession().getValue());