1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
This commit is contained in:
Dan Finlay 2016-08-16 17:50:51 -07:00
parent a167bbc5a0
commit dfaac78e39
2 changed files with 9 additions and 22 deletions

View File

@ -1,14 +1,4 @@
const createId = require('hat')
const extend = require('xtend')
const unmountComponentAtNode = require('react-dom').unmountComponentAtNode
const findDOMNode = require('react-dom').findDOMNode
const render = require('react-dom').render
const h = require('react-hyperscript')
const PendingTxDetails = require('../../../ui/app/components/pending-tx-details')
const PendingMsgDetails = require('../../../ui/app/components/pending-msg-details')
const MetaMaskUiCss = require('../../../ui/css')
const extension = require('./extension')
var notificationHandlers = {}
const notifications = {
createUnlockRequestNotification: createUnlockRequestNotification,
@ -32,11 +22,11 @@ function createMsgNotification (state) {
function showNotification() {
extension.windows.create({
url:"notification.html",
type:"detached_panel",
focused:true,
width:360,
height:500,
url: 'notification.html',
type: 'detached_panel',
focused: true,
width: 360,
height: 500,
})
}

View File

@ -254,14 +254,11 @@ function reduceApp (state, action) {
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
extension.windows.getCurrent({}, (win) => {
extension.windows.remove(win.id, console.error)
})
}
return extend(appState, {
transForward: false,
warning: null,