1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Add more informative message

This commit is contained in:
Kevin Serrano 2017-03-08 10:46:17 -08:00
parent b0280dc162
commit 6f980cfe10
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
2 changed files with 9 additions and 1 deletions

View File

@ -49,12 +49,14 @@ function setupControllerConnection (connectionStream, cb) {
}
function setupApp (err, accountManager) {
var container = document.getElementById('app-content')
if (err) {
container.innerHTML = '<div class="critical-error">The MetaMask app failed to load: please restart MetaMask</div>'
container.style.height = '80px'
log.error(err.stack)
throw err
}
var container = document.getElementById('app-content')
MetaMaskUi({
container: container,

View File

@ -256,3 +256,9 @@ hr.horizontal-line {
text-overflow: ellipsis;
white-space: nowrap;
}
.critical-error {
text-align: center;
margin-top: 20px;
color: red;
}