diff options
author | kumavis <aaron@kumavis.me> | 2016-05-26 02:54:38 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2016-05-26 02:54:38 +0800 |
commit | a532a7f863204f55517e9d70e041c71206e7878c (patch) | |
tree | 29fee9875cd56d1ffeb835da1ecddf52e6c9831c /app | |
parent | b6a2d388f7bee3c53e64e1551beb843902508ea0 (diff) | |
download | tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.gz tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.zst tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.zip |
notifications - remove timeout for signature requests
Diffstat (limited to 'app')
-rw-r--r-- | app/scripts/lib/notifications.js | 2 |
1 files changed, 2 insertions, 0 deletions
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, |