Last active
July 8, 2019 08:32
-
-
Save charlietango/ac4c3730cec2ef8eca663ec550b92207 to your computer and use it in GitHub Desktop.
Appes website - pages
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
Appes website - pages | |
Home* | |
click Case Study 1 -> Case Study 1 | |
click Case Study 2 -> Case Study 2 | |
click Case Study 3 -> Case Study 3 | |
click Manifesto -> Manifesto | |
click Tech -> Technology | |
click T&C -> TC | |
TC | |
click Back -> Home | |
Case Study 1 | |
click See next CS -> Case Study 2 | |
click Back -> Home | |
Case Study 2 | |
click See next CS -> Case Study 3 | |
click Back -> Home | |
Case Study 3 | |
click Back -> Home | |
Manifesto | |
click Back -> Home | |
Technology | |
click Back -> Home |
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"}}, | |
`Current page: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment