Make editcard and newcard dialogs not resizeable.

This commit is contained in:
hangas%netscape.com 1999-08-10 22:18:45 +00:00
Родитель 12f49894e4
Коммит 31aca663f7
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -4,7 +4,7 @@ function AbNewCardDialog()
{
window.openDialog("chrome://addressbook/content/abNewCardDialog.xul",
"",
"chrome",
"chrome,resizeable=no",
{GetAddressBooksAndURIs:GetAddressBooksAndURIs});
}
@ -48,7 +48,7 @@ function AbEditCardDialog(card, okCallback)
{
var dialog = window.openDialog("chrome://addressbook/content/abEditCardDialog.xul",
"",
"chrome",
"chrome,resizeable=no",
{abURI:document.getElementById('resultsTree').getAttribute('ref'),
card:card, okCallback:okCallback});