From 875e125fb93cddf4a3eecd9fbe50e8788ab31d5c Mon Sep 17 00:00:00 2001 From: Jeff Arnold Date: Tue, 12 Feb 2013 09:56:21 -0500 Subject: [PATCH] Cause @all or @everyone to alert everyone (imported from commit e2d1cd8b6ea4f2cbae82d052643a5b88e979931c) --- zephyr/static/js/notifications.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zephyr/static/js/notifications.js b/zephyr/static/js/notifications.js index 90423e8ca9..c21198d6ff 100644 --- a/zephyr/static/js/notifications.js +++ b/zephyr/static/js/notifications.js @@ -19,6 +19,8 @@ function browser_desktop_notifications_on () { exports.initialize = function () { names = fullname.toLowerCase().split(" "); names.push(email.split("@")[0].toLowerCase()); + names.push("all"); + names.push("everyone"); $(window).focus(function () { window_has_focus = true;