Last active
April 16, 2020 20:28
-
-
Save gbuszmicz/57648d01e8fa2f5d4f26cb116d973194 to your computer and use it in GitHub Desktop.
idle
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
idle | |
FETCHING -> fetching | |
fetching | |
FETCH_SUCCESS -> resolve | |
FETCH_ERROR -> reject | |
FETCH_EMPTY -> empty | |
resolve | |
ready | |
OPEN_ZOOM_MODAL -> zoomModal | |
OPEN_OFFER_MODAL -> offerModal | |
zoomModal | |
CLOSE_ZOOM_MODAL -> resolve | |
offerModal | |
CLOSE_OFFER_MODAL -> resolve | |
reject | |
FETCHING -> fetching | |
empty |
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