From 0d67bfc970d3b2e5ad5cff1dd9b0a6a277bb2a4b Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 31 Oct 2017 12:04:03 -0700 Subject: [PATCH] Add bug number to comment about implementing notifications.onClose.byUser support. (no bug) r=trivial DONTBUILD MozReview-Commit-ID: HFernhOu4lG --HG-- extra : rebase_source : eacece7d19a421a270fbbcbecae816c0c4ff4d68 --- toolkit/components/extensions/ext-notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/components/extensions/ext-notifications.js b/toolkit/components/extensions/ext-notifications.js index 386353ea7148..294c2dcbf162 100644 --- a/toolkit/components/extensions/ext-notifications.js +++ b/toolkit/components/extensions/ext-notifications.js @@ -142,7 +142,7 @@ this.notifications = class extends ExtensionAPI { onClosed: new EventManager(context, "notifications.onClosed", fire => { let listener = (event, notificationId) => { - // FIXME: Support the byUser argument. + // FIXME: Support the byUser argument (bug 1413188). fire.async(notificationId, true); };