Procházet zdrojové kódy

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

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

+ 1
- 8
ace/index.html Zobrazit soubor

@@ -159,18 +159,11 @@
input.type = 'file';

input.onchange = e => {

// getting a hold of the file reference
var file = e.target.files[0];

// setting up the reader
var reader = new FileReader();
reader.readAsText(file,'UTF-8');

// here we tell the reader what to do when it's done reading...
reader.onload = readerEvent => {
var content = readerEvent.target.result; // this is the content!
editor.setValue(content);
editor.setValue(readerEvent.target.result);
editor.clearSelection();
}



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