From 257e674bde1deb168ae97dedbf0e27e988b7ca80 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 25 May 2019 18:36:25 -0400 Subject: [PATCH] [Pale Moon] Fix event.stopPropagation is not defined when clicking the show/hide tiles on about:newtab --- application/palemoon/components/newtab/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/palemoon/components/newtab/page.js b/application/palemoon/components/newtab/page.js index ceb2c2a768..34387fd440 100644 --- a/application/palemoon/components/newtab/page.js +++ b/application/palemoon/components/newtab/page.js @@ -239,6 +239,6 @@ var gPage = { toggleEnabled: function(aEvent) { gAllPages.enabled = !gAllPages.enabled; - event.stopPropagation(); + aEvent.stopPropagation(); } };