You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
707 B
25 lines
707 B
const injectCss = require('inject-css')
|
|
const MetaMaskUiCss = require('../../ui/css')
|
|
const startPopup = require('./popup-core')
|
|
const PortStream = require('./lib/port-stream.js')
|
|
const isPopupOrNotification = require('./lib/is-popup-or-notification')
|
|
const extension = require('./lib/extension')
|
|
const notification = require('./lib/notifications')
|
|
|
|
var css = MetaMaskUiCss()
|
|
injectCss(css)
|
|
|
|
var name = isPopupOrNotification()
|
|
closePopupIfOpen(name)
|
|
window.METAMASK_UI_TYPE = name
|
|
|
|
var pluginPort = extension.runtime.connect({ name })
|
|
var portStream = new PortStream(pluginPort)
|
|
|
|
startPopup(portStream)
|
|
|
|
function closePopupIfOpen(name) {
|
|
if (name !== 'notification') {
|
|
notification.closePopup()
|
|
}
|
|
}
|
|
|