aboutsummaryrefslogtreecommitdiff
path: root/src/webex/chromeBadge.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-06 21:15:41 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-06 21:15:41 +0530
commitf36bb7a04eabe0330cb166bf9ce5021c92f38dc8 (patch)
tree9a242a06bd5353c8b167600c31776c9f16d9d21c /src/webex/chromeBadge.ts
parent07f25566ca51b7faf6462a57d15f4ebbfc733ab0 (diff)
downloadwallet-core-f36bb7a04eabe0330cb166bf9ce5021c92f38dc8.tar.xz
linter
Diffstat (limited to 'src/webex/chromeBadge.ts')
-rw-r--r--src/webex/chromeBadge.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/webex/chromeBadge.ts b/src/webex/chromeBadge.ts
index cdd99f8c1..330388ca0 100644
--- a/src/webex/chromeBadge.ts
+++ b/src/webex/chromeBadge.ts
@@ -38,25 +38,25 @@ export class ChromeBadge {
* might still be running even if we're not busy anymore,
* just to transition to the "normal" state in a animated way.
*/
- private animationRunning: boolean = false;
+ private animationRunning = false;
/**
* Is the wallet still busy? Note that we do not stop the
* animation immediately when the wallet goes idle, but
* instead slowly close the gap.
*/
- private isBusy: boolean = false;
+ private isBusy = false;
/**
* Current rotation angle, ranges from 0 to rotationAngleMax.
*/
- private rotationAngle: number = 0;
+ private rotationAngle = 0;
/**
* While animating, how wide is the current gap in the circle?
* Ranges from 0 to openMax.
*/
- private gapWidth: number = 0;
+ private gapWidth = 0;
/**
* Should we show the notification dot?