mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
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')
|
|
})
|