Переглянути джерело

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

master
KaiSD 5 роки тому
джерело
коміт
7fd7924924
1 змінених файлів з 4 додано та 2 видалено
  1. +4
    -2
      ace/index.html

+ 4
- 2
ace/index.html Переглянути файл

@@ -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());


Завантаження…
Відмінити
Зберегти