Last active
November 9, 2018 13:02
-
-
Save mrDarcyMurphy/f55929cdcc58633ba5ba00dd05af8fa2 to your computer and use it in GitHub Desktop.
Fat Stacks
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
Fat Stacks | |
Dashboard* | |
select Perspective -> Perspective | |
select Account -> Account | |
select RecentTransaction -> Transaction | |
select WishListItem -> WishListItem | |
Perspectives | |
add Perspective -> AddPerspective | |
select Perspective -> Perspective | |
Perspective | |
change Perspective -> Perspectives | |
select Account -> Account | |
AddPerspective | |
cancel AddPerspective -> Perspectives | |
complete AddPerspective -> Perspective | |
EditPerspective | |
DeletePerspective | |
Accounts | |
add Account -> AddAccount | |
Account | |
add Transaction -> AddTransaction | |
select Transaction -> Transaction | |
AddAccount | |
cancel AddAccount -> Accounts | |
complete AddAccount -> Account | |
EditAccount | |
DeleteAccount | |
Transactions | |
select Transaction -> Transaction | |
Transaction | |
close Transaction -> Account | |
edit Transaction -> EditTransaction | |
AddTransaction | |
EditTransaction | |
DeleteTransaction | |
Schedule | |
add ScheduledTransaction -> AddScheduledTransaction | |
select Transaction -> ScheduledTransaction | |
ScheduledTransaction | |
AddScheduledTransaction | |
EditScheduledTransaction | |
DeleteScheduledTransaction | |
Reports | |
ScheduledTransactionReport | |
PredictedFinancialsReport | |
WishList | |
WishListItem | |
back |
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