From 414e5ee3856bfd9e9fe1c548cd72e7a8635fbcfe Mon Sep 17 00:00:00 2001 From: Robert Bindar Date: Fri, 19 Sep 2014 15:35:00 -0400 Subject: [PATCH] Bug 1070209 - Fix typo in NotificationStorage.js. r=baku --- dom/notification/NotificationStorage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dom/notification/NotificationStorage.js b/dom/notification/NotificationStorage.js index 247cd2b92807..6c3470d8654a 100644 --- a/dom/notification/NotificationStorage.js +++ b/dom/notification/NotificationStorage.js @@ -86,7 +86,7 @@ NotificationStorage.prototype = { timestamp: new Date().getTime(), origin: origin, data: data, - behavior: behavior + mozbehavior: behavior }; this._notifications[id] = notification; @@ -207,7 +207,7 @@ NotificationStorage.prototype = { notification.tag, notification.icon, notification.data, - notification.behavior); + notification.mozbehavior); } catch (e) { if (DEBUG) { debug("Error calling callback handle: " + e); } }