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
Родитель 09b33f5767
Коммит d81aaefe57
1 изменённых файлов: 0 добавлений и 32 удалений

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

@ -1,32 +0,0 @@
function Startup()
{
var bundle = document.getElementById("bundle_profileManager");
doSetOKCancel( onDontDeleteFiles, onCancel, onDeleteFiles, null );
var okButton = document.getElementById("ok");
var Button2 = document.getElementById("Button2");
var cancelButton = document.getElementById("cancel");
okButton.setAttribute("label", bundle.getString("dontDeleteFiles"));
Button2.setAttribute("label", bundle.getString("deleteFiles"));
cancelButton.setAttribute("label", bundle.getString("cancel"));
Button2.removeAttribute("collapsed");
okButton.focus();
}
function onDeleteFiles()
{
opener.DeleteProfile( true );
window.close();
}
function onDontDeleteFiles()
{
opener.DeleteProfile( false );
window.close();
}
function onCancel()
{
window.close();
}