Files
Mozilla/mozilla/mailnews/addrbook/resources/content/abAddressBookNameDialog.js
hangas%netscape.com 47acbf3663 More cleanup for address book. Notes area in address book card is now multiple lines.
git-svn-id: svn://10.0.0.236/trunk@46922 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-11 02:05:26 +00:00

38 lines
691 B
JavaScript

var okCallback = 0;
function abNameOnLoad()
{
doSetOKCancel(abNameOKButton, 0);
// look in arguments[0] for parameters
if (window.arguments && window.arguments[0])
{
if ( window.arguments[0].title )
{
dump("title = " + window.arguments[0].title + "\n");
var title = window.arguments[0].title;
top.window.title = title;
}
if ( window.arguments[0].okCallback )
top.okCallback = window.arguments[0].okCallback;
}
// focus on input
var name = document.getElementById('name');
if ( name )
name.focus();
}
function abNameOKButton()
{
if ( top.okCallback )
{
var name = document.getElementById('name').value;
top.okCallback(name);
}
return true;
}