diff --git a/components/navigation/content/browser-history-navigation-button.js b/components/navigation/content/browser-history-navigation-button.js index 8010ecec28..11c1dbe2c8 100644 --- a/components/navigation/content/browser-history-navigation-button.js +++ b/components/navigation/content/browser-history-navigation-button.js @@ -33,15 +33,15 @@ case "load": case "BrowserTabs::LocationChange": case "BrowserTabs::TabSelect": - if (!this.context.browser) return; + // if (!this.context.browser) return; - if (direction === "back") { - this.disabled = !this.context.browser.canGoBack; - } else if (direction === "forward") { - this.disabled = !this.context.browser.canGoForward; - } + // if (direction === "back") { + // this.disabled = !this.context.browser.canGoBack; + // } else if (direction === "forward") { + // this.disabled = !this.context.browser.canGoForward; + // } - break; + // break; } }