Bug 272705 Error `document.getElementById("cmd_SwitchTextDirection") has no properties'' [xs] in file `chrome://communicator/content/utilityOverlay.js'', line 387, character 0.

r=neil sr=neil


git-svn-id: svn://10.0.0.236/trunk@167713 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org 2005-01-14 07:58:37 +00:00
parent 901e7b94ed
commit 3b4298c6b7

View File

@ -384,8 +384,10 @@ function goUpdateGlobalEditMenuItems()
goUpdateCommand('cmd_delete');
try {
// XXX: implement controller for cmd_SwitchTextDirection
document.getElementById('cmd_SwitchTextDirection').setAttribute('disabled',
!document.commandDispatcher.focusedElement);
var changer = document.getElementById('cmd_SwitchTextDirection');
if (changer)
changer.setAttribute('disabled',
!document.commandDispatcher.focusedElement);
}
catch (e) {}
}