Sfoglia il codice sorgente

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

master
KaiSD 4 anni fa
parent
commit
50fa7e8b4b
1 ha cambiato i file con 1 aggiunte e 8 eliminazioni
  1. +1
    -8
      ace/index.html

+ 1
- 8
ace/index.html Vedi File

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



Loading…
Annulla
Salva