aboutsummaryrefslogtreecommitdiffstats
path: root/app/home.html
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-07-29 02:06:39 +0800
committerDan Finlay <dan@danfinlay.com>2017-07-29 02:06:39 +0800
commit651fec5112ee77eed995db80621d2ae6e799e8cf (patch)
treed64ac70be57ec074bb0ae234d9a6dac16dc57dcd /app/home.html
parent9ac0a18f3b345bb8236febe626d3b6f6bed75ae3 (diff)
downloadtangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.tar
tangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.tar.gz
tangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.tar.bz2
tangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.tar.lz
tangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.tar.xz
tangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.tar.zst
tangerine-wallet-browser-651fec5112ee77eed995db80621d2ae6e799e8cf.zip
Create distinct responsive 'home.html' file, hard-code popup.html size
Because firefox was having inconsistent sizing, made a second html file for forcing the view to a certain size. Still allows us to develop a responsive interface via the `home.html` file, which shares all the same react JS & CSS as popup.html.
Diffstat (limited to 'app/home.html')
-rw-r--r--app/home.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/home.html b/app/home.html
new file mode 100644
index 000000000..cfb4b00a0
--- /dev/null
+++ b/app/home.html
@@ -0,0 +1,12 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1 user-scalable=no">
+ <title>MetaMask Plugin</title>
+ </head>
+ <body>
+ <div id="app-content"></div>
+ <script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script>
+ </body>
+</html>