Created
March 25, 2020 09:34
-
-
Save bulatie/952ffcff94718efbeb6208bc64051b67 to your computer and use it in GitHub Desktop.
circleClickHandler
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
circleClickHandler() { | |
let level = this.curExpendLevel | |
if (level < 2 && (level > this.lastExpendLevel || level === 0)) { | |
level++ | |
} else { | |
level-- | |
} | |
this.lastExpendLevel = this.curExpendLevel | |
this.curExpendLevel = level | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment