Bug 1035164 - fix nullcheck in CustomizableWidgets, remove warning for items without shortcut in subviews, r=jaws

--HG--
extra : rebase_source : 0b58d1d43a877f8776ac99fe20dda9c4495c4643
This commit is contained in:
Gijs Kruitbosch 2014-07-07 18:38:25 +01:00
Родитель 1449cf93a1
Коммит 91bf6f3a3a
2 изменённых файлов: 1 добавлений и 2 удалений

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

@ -1275,7 +1275,6 @@ let CustomizableUIInternal = {
shortcut = ShortcutUtils.findShortcut(document.getElementById(commandId));
}
if (!shortcut) {
ERROR("Could not find a keyboard shortcut for '" + aShortcutNode.outerHTML + "'.");
return;
}

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

@ -52,7 +52,7 @@ function setAttributes(aNode, aAttrs) {
let additionalArgs = [];
if (aAttrs.shortcutId) {
let shortcut = doc.getElementById(aAttrs.shortcutId);
if (doc) {
if (shortcut) {
additionalArgs.push(ShortcutUtils.prettifyShortcut(shortcut));
}
}