proper exception throwing when sync xhrs are attempted to be used in the browser

This commit is contained in:
Alon Zakai 2012-09-20 14:15:02 -07:00
Родитель 83c6675368
Коммит 711c7438cc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -359,7 +359,7 @@ LibraryManager.library = {
var success = true;
if (typeof XMLHttpRequest !== 'undefined') {
// Browser.
assert('Cannot do synchronous binary XHRs in modern browsers. Use --embed-file or --preload-file in emcc');
throw 'Cannot do synchronous binary XHRs in modern browsers. Use --embed-file or --preload-file in emcc';
} else if (Module['read']) {
// Command-line.
try {