For consistancies sake, back out the rest of hangas's changes until he can

add a selectaddress.xul file.
This commit is contained in:
mscott%netscape.com 1999-05-19 06:36:36 +00:00
Родитель 037a4e3128
Коммит 1e11c27091
1 изменённых файлов: 0 добавлений и 46 удалений

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

@ -1,46 +0,0 @@
function ChangeDirectoryByDOMNode(dirNode)
{
var uri = dirNode.getAttribute('id');
dump(uri + "\n");
ChangeDirectoryByURI(uri);
}
function ChangeDirectoryByURI(uri)
{
var tree = frames[0].frames[1].document.getElementById('resultTree');
tree.childNodes[7].setAttribute('id', uri);
}
function EditCard()
{
var dialog = window.openDialog("chrome://addressbook/content/editcard.xul",
"editCard",
"chrome");
return dialog;
}
function SelectAddress()
{
var dialog = window.openDialog("chrome://addressbook/content/selectaddress.xul",
"selectAddress",
"chrome");
return dialog;
}
function AbNewCard()
{
EditCard();
}
function EditCardOKButton()
{
dump("OK Hit\n");
}
function EditCardCancelButton()
{
dump("Cancel Hit\n");
}