Bug 587187 - test for window.TabView rather than just TabView [r=dolske a=dolske]

Check the global object for existence to avoid ReferenceError.

--HG--
extra : rebase_source : 2b5ddb6a8050a3d1407d94cc4381a90bec906a3a
This commit is contained in:
Ian Gilman 2010-08-13 18:37:13 -07:00
Родитель 0ea48b6fb8
Коммит 0173fd5135
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -726,7 +726,7 @@
<method name="updateTitlebar">
<body>
<![CDATA[
if (TabView && TabView.isVisible()) {
if (window.TabView && TabView.isVisible()) {
// ToDo: this will be removed when we gain ability to draw to the menu bar.
// Bug 586175
this.ownerDocument.title = TabView.windowTitle;