replacing location.this with the complete url as that call is failing

This commit is contained in:
gayatrib%netscape.com 1999-08-09 22:37:40 +00:00
Родитель eb089c49a4
Коммит 70c2ee3e00
1 изменённых файлов: 5 добавлений и 3 удалений

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

@ -36,7 +36,8 @@ function MigrateProfile(override)
profileCore.MigrateProfile(name);
//this.location.replace(this.location);
this.location.href = this.location;
//this.location.href = this.location;
this.location.href = "resource:/res/profile/pm.xul";
}
function MigrateAllProfiles()
@ -76,7 +77,7 @@ function RenameProfile(w)
//dump("RenameProfile : " + oldName + " to " + newName + "\n");
profileCore.RenameProfile(oldName, newName);
//this.location.replace(this.location);
this.location.href = this.location;
this.location.href = "resource:/res/profile/pm.xul";
}
function DeleteProfile()
@ -93,7 +94,8 @@ function DeleteProfile()
//dump("Delete '" + name + "'\n");
profileCore.DeleteProfile(name);
//this.location.replace(this.location);
this.location.href = this.location;
//this.location.href = this.location;
this.location.href = "resource:/res/profile/pm.xul";
}
function StartCommunicator()