This commit is contained in:
Alon Zakai 2013-04-05 13:33:11 -07:00
Родитель 33e9673c68
Коммит 34adb13ead
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -379,7 +379,7 @@ mergeInto(LibraryManager.library, {
xhr.open('GET', url, true);
xhr.responseType = 'arraybuffer';
xhr.onload = function() {
if (xhr.status == 200) {
if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0
onload(xhr.response);
} else {
onerror();