зеркало из https://github.com/mozilla/pjs.git
Disable charset menus after the document has been modified. r=cmanske
This commit is contained in:
Родитель
454a76392b
Коммит
5b50ef0017
|
@ -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 ---------------------------
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче