Изменить 'ace/index.html'
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user