diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-08-30 09:27:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-30 09:27:55 +0800 |
commit | 791e80988d889a72fee12579fa6525b6b0f15e18 (patch) | |
tree | dedc156a42acb9419a7eba8decbcad98cc9cb59a /app/scripts/popup.js | |
parent | a9c738d4d3226f61942641a41c399c75a3e9eb3e (diff) | |
parent | c15eef9425531c86a9016d1cbad9d32f4d12edcd (diff) | |
download | tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.tar tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.tar.gz tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.tar.bz2 tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.tar.lz tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.tar.xz tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.tar.zst tangerine-wallet-browser-791e80988d889a72fee12579fa6525b6b0f15e18.zip |
Merge pull request #596 from MetaMask/EdgeCompatibility
Edge compatibility
Diffstat (limited to 'app/scripts/popup.js')
-rw-r--r-- | app/scripts/popup.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/app/scripts/popup.js b/app/scripts/popup.js index 90b90a7af..096b56115 100644 --- a/app/scripts/popup.js +++ b/app/scripts/popup.js @@ -74,22 +74,12 @@ function getCurrentDomain (cb) { }) } -function clearNotifications(){ - extension.notifications.getAll(function (object) { - for (let notification in object){ - extension.notifications.clear(notification) - } - }) -} - function setupApp (err, opts) { if (err) { alert(err.stack) throw err } - clearNotifications() - var container = document.getElementById('app-content') MetaMaskUi({ |