diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-05-25 18:36:25 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-05-25 18:36:25 -0400 |
commit | a38cc1a2f5177ea18b4c2c3e260e527250283c57 (patch) | |
tree | 61d2a67eb8daffc0a4cd8d8fd6f6e345a041295a | |
parent | 63d67703534b8af4b15d9fa53b3a19c6df17b263 (diff) | |
download | UXP-a38cc1a2f5177ea18b4c2c3e260e527250283c57.tar UXP-a38cc1a2f5177ea18b4c2c3e260e527250283c57.tar.gz UXP-a38cc1a2f5177ea18b4c2c3e260e527250283c57.tar.lz UXP-a38cc1a2f5177ea18b4c2c3e260e527250283c57.tar.xz UXP-a38cc1a2f5177ea18b4c2c3e260e527250283c57.zip |
[Pale Moon] Fix event.stopPropagation is not defined when clicking the show/hide tiles on about:newtab
-rw-r--r-- | application/palemoon/components/newtab/page.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/newtab/page.js b/application/palemoon/components/newtab/page.js index ceb2c2a76..34387fd44 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(); } }; |