Browse Source

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

master
KaiSD 4 years ago
parent
commit
7fd7924924
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      ace/index.html

+ 4
- 2
ace/index.html View File

@@ -40,8 +40,10 @@
autoScrollEditorIntoView: true
})
editor.setValue(localStorage.getItem("acetest"));
editor.clearSelection();
if (localStorage.getItem("acetest") === null) {
editor.setValue(localStorage.getItem("acetest"));
editor.clearSelection();
}
editor.getSession().on('change', function () {
localStorage.setItem("acetest", editor.getSession().getValue());


Loading…
Cancel
Save