bug 164527 r=timeless sr=bz moa=ben remove unused function

This commit is contained in:
cbiesinger%web.de 2002-08-28 12:55:29 +00:00
Родитель 311e1be821
Коммит 80b25c3cf9
1 изменённых файлов: 0 добавлений и 24 удалений

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

@ -236,30 +236,6 @@ function onExit()
return true;
}
function foo()
{
if( !set ) {
if( profileManagerMode == "manager" )
oldCaptionManager = document.getElementById( "caption" ).firstChild.nodeValue;
else
oldCaptionSelection = document.getElementById( "caption" ).firstChild.nodeValue;
ChangeCaption( "What Is Mozollia?" ); // DO NOT LOCALIZE!
set = true;
}
else {
var tempCaption = document.getElementById( "caption" ).firstChild.nodeValue;
if( profileManagerMode == "manager" ) {
ChangeCaption( oldCaptionManager );
oldCaptionManager = tempCaption;
}
else {
ChangeCaption( oldCaptionSelection )
oldCaptionSelection = tempCaption;
}
set = false;
}
}
function SetUpOKCancelButtons()
{
doSetOKCancel( onStart, onExit, null, null );