Last active
June 19, 2021 11:53
-
-
Save johnnydecimal/9d45cf03d709f18d8ac46059cbd4aebc to your computer and use it in GitHub Desktop.
Listing your Projects
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
Listing your Projects | |
click a Project -> Project selected - listing Areas | |
Project selected - listing Areas | |
click the Project header -> Listing your Projects | |
click an Area -> Area selected - listing Categories | |
Area selected - listing Categories | |
click the Project header -> Listing your Projects | |
click the Area header -> Project selected - listing Areas | |
click a Category -> Category selected - listing IDs | |
Category selected - listing IDs | |
click the Project header -> Listing your Projects | |
click the Area header -> Project selected - listing Areas | |
click the Category header -> Area selected - listing Categories | |
click an ID -> ID selected - showing details | |
ID selected - showing details | |
click the Project header -> Listing your Projects | |
click the Area header -> Project selected - listing Areas | |
click the Category header -> Area selected - listing Categories | |
click the ID close button -> Category selected - listing IDs |
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
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