Bug 1288107 - Remove All Devices option in Send Tab to Device menu when we only have 1 other device. r=markh

MozReview-Commit-ID: FaqjglxeMCh

--HG--
extra : transplant_source : w%9F%CF%C1%C4a%8C%1E%9C%B1%5B%98rl%40%C4.Ne%B2
This commit is contained in:
Edouard Oger 2016-07-21 14:58:19 -07:00
Родитель eebc2b3435
Коммит 734d4ee41e
1 изменённых файлов: 6 добавлений и 4 удалений

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

@ -407,10 +407,12 @@ var gFxAccounts = {
}
// "All devices" menu item
const separator = document.createElement("menuseparator");
fragment.appendChild(separator);
const allDevicesLabel = this.strings.GetStringFromName("sendTabToAllDevices.menuitem");
addTargetDevice("", allDevicesLabel);
if (clients.length > 1) {
const separator = document.createElement("menuseparator");
fragment.appendChild(separator);
const allDevicesLabel = this.strings.GetStringFromName("sendTabToAllDevices.menuitem");
addTargetDevice("", allDevicesLabel);
}
devicesPopup.appendChild(fragment);
},