aboutsummaryrefslogtreecommitdiffstats
path: root/app/notification.html
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-08-26 06:46:44 +0800
committerGitHub <noreply@github.com>2016-08-26 06:46:44 +0800
commit78f73038e789f4483f728a7cc9ea1c68b0b3d7fa (patch)
treea838945b8518079e0e1022bb176a544d11a2ab50 /app/notification.html
parentb6b57d928a8854baf674763211c407bb4c976dba (diff)
parent8b81009a307eaf5384a2ab364a717f5188b3c501 (diff)
downloadtangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.tar
tangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.tar.gz
tangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.tar.bz2
tangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.tar.lz
tangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.tar.xz
tangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.tar.zst
tangerine-wallet-browser-78f73038e789f4483f728a7cc9ea1c68b0b3d7fa.zip
Merge pull request #554 from MetaMask/PopupNotifications
Replace chrome notifications with windows.create
Diffstat (limited to 'app/notification.html')
-rw-r--r--app/notification.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/notification.html b/app/notification.html
new file mode 100644
index 000000000..cc485da7f
--- /dev/null
+++ b/app/notification.html
@@ -0,0 +1,16 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>MetaMask Notification</title>
+ <style>
+ body {
+ overflow: hidden;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="app-content"></div>
+ <script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script>
+ </body>
+</html>