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.
32 lines
562 B
32 lines
562 B
8 years ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>MetaMask</title>
|
||
|
|
||
|
<script>
|
||
|
window.METAMASK_DEBUG = true
|
||
|
window.TEST_MODE = true
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<!-- app content -->
|
||
|
<div id="app-content" style="height: 100%"></div>
|
||
|
<script src="./bundle.js" type="text/javascript" charset="utf-8"></script>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
<style>
|
||
|
html, body, #app-content, .super-dev-container {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
position: relative;
|
||
|
background: white;
|
||
|
}
|
||
|
.mock-app-root {
|
||
|
background: #F7F7F7;
|
||
|
}
|
||
|
</style>
|
||
|
</html>
|