This commit is contained in:
jst%mozilla.jstenback.com 2005-01-06 16:13:51 +00:00
Родитель 693540eccc
Коммит e82d61af3f
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1657,8 +1657,10 @@
// We're about to open a modal dialog, make sure the opening
// tab is brought to the front.
var targetTop = new XPCNativeWrapper(event.target, "top").top;
for (var i = 0; i < browsers.length; ++i) {
if (this.getBrowserAtIndex(i).contentWindow == event.target) {
if (this.getBrowserAtIndex(i).contentWindow == targetTop) {
this.mModalDialogShowing = true;
this.selectedTab = this.mTabContainer.childNodes[i];

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

@ -1574,9 +1574,11 @@
// We're about to open a modal dialog, make sure the opening
// tab is brought to the front.
var targetTop = new XPCNativeWrapper(event.target, "top").top;
const browsers = this.browsers;
for (var i = 0; i < browsers.length; ++i) {
if (browsers[i].contentWindow == event.target) {
if (browsers[i].contentWindow == targetTop) {
this.selectedTab = this.mTabContainer.childNodes[i];
break;