aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-06-29 03:08:30 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-06-29 03:08:30 +0800
commitc11520306366ec4a3d75c7ee48f6c1b1dd56399e (patch)
treea5841d4e1e46d64d218ec021f00f9a61d79f9b64 /ui/app/app.js
parentc548a1225bf91bba5ab6302e814051845e9b5871 (diff)
downloadtangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.tar
tangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.tar.gz
tangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.tar.bz2
tangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.tar.lz
tangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.tar.xz
tangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.tar.zst
tangerine-wallet-browser-c11520306366ec4a3d75c7ee48f6c1b1dd56399e.zip
fix for linting
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)
+ }
})
-};
+}