Created
June 25, 2018 19:31
-
-
Save rarmatei/de3cf6b78963fd4030e0acf81b5d814a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AmountInput { | |
private static MAX_ALLOWED = 99_999_999; | |
amount: number = 0; | |
showTooltip() { | |
//show tooltip | |
setTimeout(() => { | |
//hide tooltip | |
}, 2_500); | |
} | |
formatMillion() { | |
return this.amount / 1_000_000 + "M"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment