aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-05-26 02:54:38 +0800
committerkumavis <aaron@kumavis.me>2016-05-26 02:54:38 +0800
commita532a7f863204f55517e9d70e041c71206e7878c (patch)
tree29fee9875cd56d1ffeb835da1ecddf52e6c9831c /app/scripts
parentb6a2d388f7bee3c53e64e1551beb843902508ea0 (diff)
downloadtangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar
tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.gz
tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.bz2
tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.lz
tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.xz
tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.tar.zst
tangerine-wallet-browser-a532a7f863204f55517e9d70e041c71206e7878c.zip
notifications - remove timeout for signature requests
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 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,