From 212311e9ffa31e402c09413593ef511ca9c2c0b3 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Sat, 8 Dec 2018 03:09:43 +0000 Subject: [PATCH] 2306 push* FF version - https://www.mozilla.org/en-US/firefox/44.0/releasenotes/ & https://developer.mozilla.org/en-US/docs/Web/API/Push_API - ^^ both say 44, ima gonna roll with that, as a compatibility version - here's a bugzilla https://bugzilla.mozilla.org/show_bug.cgi?id=1207875 indicating they were around in FF42 --- user.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/user.js b/user.js index c517c6f..6b63435 100644 --- a/user.js +++ b/user.js @@ -1154,14 +1154,14 @@ user_pref("dom.webnotifications.serviceworker.enabled", false); // [FF44+] * [SETTING] to add site exceptions: Page Info>Permissions>Receive Notifications * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Notifications>Settings ***/ // user_pref("permissions.default.desktop-notification", 2); // [FF58+] -/* 2306: disable push notifications [FF44+] +/* 2306: disable push notifications * web apps can receive messages pushed to them from a server, whether or * not the web app is in the foreground, or even currently loaded * [1] https://developer.mozilla.org/docs/Web/API/Push_API ***/ -user_pref("dom.push.enabled", false); -user_pref("dom.push.connection.enabled", false); -user_pref("dom.push.serverURL", ""); -user_pref("dom.push.userAgentID", ""); +user_pref("dom.push.enabled", false); // [FF44+] +user_pref("dom.push.connection.enabled", false); // [FF44+] +user_pref("dom.push.serverURL", ""); // [FF44+] +user_pref("dom.push.userAgentID", ""); // [FF44+] /*** [SECTION 2400]: DOM (DOCUMENT OBJECT MODEL) & JAVASCRIPT ***/ user_pref("_user.js.parrot", "2400 syntax error: the parrot's kicked the bucket!");