renamed message to setMessage and remove_message to clearMessage

git-svn-id: svn://10.0.0.236/trunk@6369 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timm%netscape.com
1998-07-24 04:34:20 +00:00
parent be48a74d02
commit a7b6073bb3

View File

@@ -162,13 +162,13 @@ function setFocus( theObject )
theObject.select();
}
function message( txt )
function setMessage( txt )
{
window.status = txt;
setTimeout( "remove_message()", 10000 );
setTimeout( "clearMessage()", 10000 );
}
function remove_message()
function clearMessage()
{
window.status = "";
}