aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-05-26 05:04:47 +0800
committerDan Finlay <somniac@me.com>2016-05-26 05:04:47 +0800
commitb2b7e7ff7e57a5ce300f9fcc0b5a621004f01ced (patch)
tree52e9d9c6283e8c39593ff56dccd71216658b8802
parent7a48db283fd9b6eb462185b752f2616ea846f41b (diff)
parenta532a7f863204f55517e9d70e041c71206e7878c (diff)
downloadtangerine-wallet-browser-b2b7e7ff7e57a5ce300f9fcc0b5a621004f01ced.tar.gz
tangerine-wallet-browser-b2b7e7ff7e57a5ce300f9fcc0b5a621004f01ced.tar.zst
tangerine-wallet-browser-b2b7e7ff7e57a5ce300f9fcc0b5a621004f01ced.zip
Merge pull request #211 from MetaMask/h17
notifications - remove timeout for signature requests
-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,