From 931950a880b3550490422b1855c509be10586858 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Mon, 16 Apr 2018 14:47:03 +0200 Subject: Mass-replace global-scope let with var in Pale Moon and TychoAM tag #155 --- application/palemoon/modules/PopupNotifications.jsm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'application/palemoon/modules/PopupNotifications.jsm') diff --git a/application/palemoon/modules/PopupNotifications.jsm b/application/palemoon/modules/PopupNotifications.jsm index 9b2e8e5d1..d2faf52c3 100644 --- a/application/palemoon/modules/PopupNotifications.jsm +++ b/application/palemoon/modules/PopupNotifications.jsm @@ -18,8 +18,8 @@ const ICON_ATTRIBUTE_SHOWING = "showing"; const PREF_SECURITY_DELAY = "security.notification_enable_delay"; -let popupNotificationsMap = new WeakMap(); -let gNotificationParents = new WeakMap; +var popupNotificationsMap = new WeakMap(); +var gNotificationParents = new WeakMap; function getAnchorFromBrowser(aBrowser) { let anchor = aBrowser.getAttribute("popupnotificationanchor") || -- cgit v1.2.3