Last active
January 24, 2020 01:27
-
-
Save ericyd/68287c4eccd3e5723891acc4b00923b1 to your computer and use it in GitHub Desktop.
Smart Deposits
This file contains 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
Smart Deposits | |
First paycheck for employer -> Intro Carousel step 1 | |
Subsequent paychecks for employer -> Receipt View | |
First Time experience | |
Intro Carousel step 1 | |
Swipe to step 2 -> Intro Carousel step 2 | |
Continue -> Edit View | |
Intro Carousel step 2 | |
Swipe to step 1 -> Intro Carousel step 1 | |
Swipe to step 3 -> Intro Carousel step 3 | |
Continue -> Edit View | |
Intro Carousel step 3 | |
Swipe to step 2 -> Intro Carousel step 2 | |
Continue -> Edit View | |
Edit View | |
Adjust percentage | |
Adjust allocation | |
Confirm -> Receipt View | |
Exit -> Receipt View | |
Receipt View | |
Edit -> Edit View | |
Confirm -> Confirmation Modal | |
Confirmation Modal | |
Confirm -> Spend Screen | |
Adjust -> Edit View | |
Spend Screen |
This file contains 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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment