The last two patches were by John Morrison <jrgm@netscape.com>. Sorry for forgetting to attribute them.

This commit is contained in:
blakeross%telocity.com 2001-04-14 05:30:53 +00:00
Родитель 781651777a
Коммит 0ae4fdef6a
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1,7 +1,7 @@
function Startup()
{
var bundle = document.getElementById("bundle_profileManager");
doSetOKCancel( onDontDeleteFiles, onCancel, onDeleteFiles, null );
doSetOKCancel(onDontDeleteFiles, onCancel, onDeleteFiles, null);
var okButton = document.getElementById("ok");
var Button2 = document.getElementById("Button2");
var cancelButton = document.getElementById("cancel");
@ -16,13 +16,13 @@ function Startup()
function onDeleteFiles()
{
opener.DeleteProfile( true );
opener.DeleteProfile(true);
window.close();
}
function onDontDeleteFiles()
{
opener.DeleteProfile( false );
opener.DeleteProfile(false);
window.close();
}