Adding a try catch to avoid noise in the js console. r=mconnor

This commit is contained in:
dougt%meer.net 2005-11-14 21:42:41 +00:00
Родитель fc06e58741
Коммит 7b3b670f50
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -308,8 +308,12 @@
<method name="detachController">
<body><![CDATA[
if (this.mController.input == this)
try {
if (this.mController.input == this)
this.mController.input = null;
} catch (ex) {
// nothing really to do.
}
]]></body>
</method>