aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 1ae579664..ef436d4e3 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -358,9 +358,9 @@ App.prototype.toggleMetamaskActive = function () {
}
App.prototype.clearNotifications = function () {
- chrome.notifications.getAll( function (object) {
- for (let notification in object){
- chrome.notifications.clear(notification)
- }
+ chrome.notifications.getAll(function (object) {
+ for (let notification in object){
+ chrome.notifications.clear(notification)
+ }
})
-};
+}