Procházet zdrojové kódy

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

master
KaiSD před 5 roky
rodič
revize
7fd7924924
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. +4
    -2
      ace/index.html

+ 4
- 2
ace/index.html Zobrazit soubor

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


Načítá se…
Zrušit
Uložit