Show ID/classes in structure toolbar and allow to select element; b=357389, r=brade (missing file, me trashes tortoiseCVS)

This commit is contained in:
daniel%glazman.org 2006-10-24 09:01:23 +00:00
Родитель 7f1493077d
Коммит 7961ae7dbf
1 изменённых файлов: 20 добавлений и 0 удалений

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

@ -0,0 +1,20 @@
//-----------------------------------------------------------------------------------
var cmdDummyHTML =
{
isCommandEnabled: function(aCommand, dummy)
{
return (EditorUtils.getCurrentEditorElement() &&
EditorUtils.isDocumentEditable() &&
EditorUtils.isEditingRenderedHTML());
},
getCommandStateParams: function(aCommand, aParams, aRefCon) {},
doCommandParams: function(aCommand, aParams, aRefCon) {},
doCommand: function(aCommand)
{
// do nothing
dump("Hey, who's calling the dummy command?\n");
}
};