summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-05-25 18:36:25 -0400
committerMatt A. Tobin <email@mattatobin.com>2019-05-25 18:36:25 -0400
commitddc697b2e8826348f9b2f0aa69e9f1904b1af8f8 (patch)
tree61d2a67eb8daffc0a4cd8d8fd6f6e345a041295a
parent59612c4ec7aa3f8c2fe7f633bca04dcba97cf2d8 (diff)
downloadaura-central-ddc697b2e8826348f9b2f0aa69e9f1904b1af8f8.tar.gz
[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.js2
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();
}
};