srt is utf-8

This commit is contained in:
j 2016-02-23 18:03:07 +05:30
commit dd9892020c
2 changed files with 2 additions and 2 deletions

View file

@ -444,5 +444,5 @@ function loadSrt(file) {
reader.onload = function(data) {
textArea.fromSrt(data.target.result);
};
reader.readAsBinaryString(file);
reader.readAsText(file);
}