aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/notifications.js
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-05-25 06:00:48 +0800
committerDan Finlay <somniac@me.com>2016-05-25 06:00:48 +0800
commitb6a2d388f7bee3c53e64e1551beb843902508ea0 (patch)
tree839b637cb67e61a9377b325140dcd99dccaf7440 /app/scripts/lib/notifications.js
parentdfce3d5c9de230b092908c5b76b84b8caf3a92f1 (diff)
parent1d23bf81227b86d66841db75c2efd8e5f64a68fe (diff)
downloadtangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.tar
tangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.tar.gz
tangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.tar.bz2
tangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.tar.lz
tangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.tar.xz
tangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.tar.zst
tangerine-wallet-browser-b6a2d388f7bee3c53e64e1551beb843902508ea0.zip
Merge pull request #207 from MetaMask/i168
signTx+Msg - show Account Unlock Request when locked
Diffstat (limited to 'app/scripts/lib/notifications.js')
-rw-r--r--app/scripts/lib/notifications.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js
index 2b7cbfe66..0b55417b2 100644
--- a/app/scripts/lib/notifications.js
+++ b/app/scripts/lib/notifications.js
@@ -3,6 +3,7 @@ const uiUtils = require('../../../ui/app/util')
var notificationHandlers = {}
module.exports = {
+ createUnlockRequestNotification: createUnlockRequestNotification,
createTxNotification: createTxNotification,
createMsgNotification: createMsgNotification,
}
@@ -24,6 +25,19 @@ chrome.notifications.onClosed.addListener(function(notificationId){
})
// creation helper
+function createUnlockRequestNotification(opts){
+ var message = 'An Ethereum app has requested a signature. Please unlock your account.'
+
+ var id = createId()
+ chrome.notifications.create(id, {
+ type: 'basic',
+ iconUrl: '/images/icon-128.png',
+ title: opts.title,
+ message: message,
+ })
+
+}
+
function createTxNotification(opts){
var message = [
'to: '+uiUtils.addressSummary(opts.txParams.to),