diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-07-27 21:38:05 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-07-27 21:38:05 +0200 |
commit | e37d07dc6c74c752202bbd44f7089ae6ecab2f72 (patch) | |
tree | fdd0c57b929a960fef8be1397f0867efbc7ddd4b /lib/util.js | |
parent | 19dd65e5d2012834c2f4ebd808f2154ba01dea93 (diff) | |
download | bugzilla-triage-e37d07dc6c74c752202bbd44f7089ae6ecab2f72.tar.gz |
Move notifications to prompts where it belongs.
Diffstat (limited to 'lib/util.js')
-rw-r--r-- | lib/util.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/util.js b/lib/util.js index 77b7fac..0ab44ce 100644 --- a/lib/util.js +++ b/lib/util.js @@ -68,39 +68,6 @@ exports.getBugNo = function getBugNo(url) { }; /** - * Show a system notification with the given message - * - * @param String or Object with a message to be shown in a default - * notification or object with properties title, icon, and body - * @return None - */ -exports.notification = function notification(msg) { - var body = msg; - var title = "Bugzilla Notification"; - var icon = null; - - if (typeof(msg) === "object") { - body = msg.body; - if ("title" in msg) { - title = msg.title; - } - if ("icon" in msg) { - icon = msg.icon; - } - } - try { - var classObj = Cc["@mozilla.org/alerts-service;1"]; - var alertService = classObj.getService(Ci.nsIAlertsService); - - alertService.showAlertNotification(icon, title, body); - return true; - } catch (e) { - console.error("Unable to display notification:", msg); - return false; - } -}; - -/** * format date to be in ISO format (just day part) * * @param date |