1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

fix for linting

This commit is contained in:
Frankie 2016-06-28 12:08:30 -07:00
parent c548a1225b
commit c115203063

View File

@ -358,9 +358,9 @@ App.prototype.toggleMetamaskActive = function () {
} }
App.prototype.clearNotifications = function () { App.prototype.clearNotifications = function () {
chrome.notifications.getAll( function (object) { chrome.notifications.getAll(function (object) {
for (let notification in object){ for (let notification in object){
chrome.notifications.clear(notification) chrome.notifications.clear(notification)
} }
}) })
}; }