aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts')
-rw-r--r--app/scripts/lib/notifications.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js
index 4626afdd1..5a7ae6c2b 100644
--- a/app/scripts/lib/notifications.js
+++ b/app/scripts/lib/notifications.js
@@ -50,6 +50,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,
@@ -74,6 +75,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,