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

git-svn-id: svn://10.0.0.236/trunk@128335 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cbiesinger%web.de 2002-08-28 12:55:29 +00:00
parent 6f2a873b95
commit 3b862595de

View File

@ -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 );