diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js index 0b55417b2..f4f0a2d8b 100644 --- a/app/scripts/lib/notifications.js +++ b/app/scripts/lib/notifications.js @@ -49,6 +49,7 @@ function createTxNotification(opts){ var id = createId() chrome.notifications.create(id, { type: 'basic', + requireInteraction: true, iconUrl: '/images/icon-128.png', title: opts.title, message: message, @@ -73,6 +74,7 @@ function createMsgNotification(opts){ var id = createId() chrome.notifications.create(id, { type: 'basic', + requireInteraction: true, iconUrl: '/images/icon-128.png', title: opts.title, message: message,