Adding in try catch around playing sound, which I think caused bug 185744.

This commit is contained in:
mikep%oeone.com 2003-01-17 20:30:44 +00:00
Родитель a5a2309951
Коммит a0a381da83
1 изменённых файлов: 9 добавлений и 1 удалений

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

@ -882,7 +882,15 @@ function playSound( ThisURL )
sample = sample.QueryInterface(Components.interfaces.nsISound);
sample.play( url );
try
{
sample.play( url );
}
catch ( ex )
{
sample.beep();
//alert( ex );
}
}
var gSelectAll = false;