Last active
February 21, 2020 15:41
-
-
Save frankitox/cdc1d4f0d9e941bcd157cae5478638d9 to your computer and use it in GitHub Desktop.
FTPs
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
FTPs | |
Fetching | |
fetch-success -> List | |
fetch-failure -> List | |
# Only state where main layout controls are enabled | |
List | |
new-ftp -> Creating FTP | |
delete-ftp -> Sure delete FTP | |
test-ftp -> Sure test FTP | |
Creating FTP | |
add-success -> List | |
add-failure -> List | |
Sure delete FTP | |
yes-delete -> Deleting FTP | |
no-delete -> List | |
Deleting FTP | |
delete-success -> List | |
delete-failure -> List | |
Sure test FTP | |
yes-test -> Testing FTP | |
no-test -> List | |
Testing FTP | |
test-success -> Test success | |
test-failure -> Test failure | |
Test failure | |
close-test-message -> List | |
Test success | |
close-test-message -> List |
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