From fd5dad136fafb8c40d74ede5ff68fe909b08166a Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Mon, 29 Aug 2016 17:33:56 -0700 Subject: Remove old notification cleanup code --- app/scripts/popup.js | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'app/scripts/popup.js') 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({ -- cgit