diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-21 10:55:49 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-21 10:55:49 +0100 |
commit | c41dc5e8e96008d1adfe394a220a6a1f8fd00846 (patch) | |
tree | 0f4a450c392600808e2439e60ef06d945f465422 | |
parent | d32e0364f9aa2d61080c53489996351d4bd7b1c4 (diff) |
Icon for desktop notifications
-rw-r--r-- | app/assets/javascripts/components/actions/notifications.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/actions/notifications.jsx b/app/assets/javascripts/components/actions/notifications.jsx index b34fc7289..97551ebf7 100644 --- a/app/assets/javascripts/components/actions/notifications.jsx +++ b/app/assets/javascripts/components/actions/notifications.jsx @@ -37,7 +37,7 @@ export function updateNotifications(notification, intlMessages, intlLocale) { const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username }); const body = $('<p>').html(notification.status ? notification.status.content : '').text(); - new Notification(title, { body }); + new Notification(title, { body, icon: notification.account.avatar }); }; }; |