aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/reducers/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/reducers/app.js')
-rw-r--r--ui/app/reducers/app.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js
index 95b60f929..cbf64bf95 100644
--- a/ui/app/reducers/app.js
+++ b/ui/app/reducers/app.js
@@ -1,6 +1,7 @@
const extend = require('xtend')
const actions = require('../actions')
const txHelper = require('../../lib/tx-helper')
+const extension = require('../../../app/scripts/lib/extension')
module.exports = reduceApp
@@ -250,6 +251,17 @@ function reduceApp (state, action) {
warning: null,
})
} else {
+
+ const isNotification = window.METAMASK_UI_TYPE === 'notification'
+ if (isNotification) {
+ return extension.windows.getCurrent({}, function(win) {
+ extension.windows.remove(win.id, function(err) {
+ if (err) console.err(err)
+ })
+ })
+ } else {
+ debugger
+ }
return extend(appState, {
transForward: false,
warning: null,