notifications - remove timeout for signature requests

This commit is contained in:
kumavis 2016-05-25 11:54:38 -07:00
parent b6a2d388f7
commit a532a7f863
1 changed files with 2 additions and 0 deletions

View File

@ -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,