Bug 1236481 - 'Synced Tabs' History menuitem not shown. r?markh draft
authorSebastian Hengst <archaeopteryx@coole-files.de>
Mon, 04 Jan 2016 14:06:27 +0100
changeset 318612 7c80158eae5f99615dfdf13d38f4eca089e11773
parent 318506 d7a0ad85d9fb77916f9d77d62697b852f3dc63e6
child 512470 8a89064cd477f52f0e1975977ffe163016a0bb9c
push id8894
push userarchaeopteryx@coole-files.de
push dateMon, 04 Jan 2016 13:17:58 +0000
reviewersmarkh
bugs1236481
milestone46.0a1
Bug 1236481 - 'Synced Tabs' History menuitem not shown. r?markh
browser/base/content/browser-places.js
--- a/browser/base/content/browser-places.js
+++ b/browser/base/content/browser-places.js
@@ -734,18 +734,16 @@ HistoryMenu.prototype = {
     if (!menuitem)
       return;
 
     if (!PlacesUIUtils.shouldShowTabsFromOtherComputersMenuitem()) {
       menuitem.setAttribute("hidden", true);
       return;
     }
 
-    let enabled = PlacesUIUtils.shouldEnableTabsFromOtherComputersMenuitem();
-    menuitem.setAttribute("disabled", !enabled);
     menuitem.setAttribute("hidden", false);
   },
 
   _onPopupShowing: function HM__onPopupShowing(aEvent) {
     PlacesMenu.prototype._onPopupShowing.apply(this, arguments);
 
     // Don't handle events for submenus.
     if (aEvent.target != aEvent.currentTarget)