mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
13 lines
343 B
JavaScript
13 lines
343 B
JavaScript
const Helper = require('./util/mascara-test-helper.js')
|
|
|
|
window.addEventListener('load', () => {
|
|
window.METAMASK_SKIP_RELOAD = true
|
|
// inject app container
|
|
const body = document.body
|
|
const container = document.createElement('div')
|
|
container.id = 'app-content'
|
|
body.appendChild(container)
|
|
// start ui
|
|
require('../src/ui.js')
|
|
})
|