Disable charset menus after the document has been modified.
r=cmanske
This commit is contained in:
shanjian%netscape.com 2000-07-17 01:12:10 +00:00
Родитель 454a76392b
Коммит 5b50ef0017
1 изменённых файлов: 12 добавлений и 0 удалений

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

@ -456,6 +456,18 @@ function EditorSetDocumentCharacterSet(aCharset)
}
}
// ------------------------------------------------------------------
function updateCharsetPopupMenu(menuPopup)
{
if(editorShell.documentModified)
{
for (var i = 0; i < menuPopup.childNodes.length; i++)
{
var menuItem = menuPopup.childNodes[i];
menuItem.setAttribute('disabled', 'true');
}
}
}
// --------------------------- Text style ---------------------------