Last active
May 7, 2019 09:24
-
-
Save ssippe/587a54a879aad42e3143f786e2f59dcf to your computer and use it in GitHub Desktop.
Landing Page
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
Landing Page | |
Create Design -> Is Logged In For New Design? | |
Login -> Login Page | |
Create Account -> Create Account | |
Is Logged In For New Design? | |
yes? -> New Design | |
no? -> Login Page | |
Login Page | |
Login -> User Has Previous Designs? | |
Create Account Btn -> Create Account | |
Create Account | |
Account Creation Flow -> New Design | |
User Is Logged In | |
Home -> User Has Previous Designs? | |
Logout -> Landing Page | |
User Has Previous Designs? | |
yes? -> Design Listing | |
no? -> New Design | |
New Design | |
Upload Dxf -> View Floor | |
View Floor | |
Edit Floor Details -> View Floor | |
Next Floor -> View Floor | |
Summary -> Summary | |
View Summary | |
Edit -> View Floor | |
Request Quote -> Quote Details | |
Request Engineering -> Engineering Details | |
Copy -> View Floor | |
Summary | |
Quote Details | |
Confirm Quote Request -> Summary | |
Engineering Details | |
Confirm Engineering Request Request -> Summary | |
Design Listing | |
View -> Summary | |
Request Quote-> Quote Details | |
Request Engineering -> Engineering Details | |
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