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:
@@ -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 = "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user