Last active
November 13, 2018 23:42
-
-
Save vikramrojo/5be7fbb595fef6fef792de0574864860 to your computer and use it in GitHub Desktop.
LDOverage&
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
| LDOverage& | |
| General -> General Admin | |
| Dashboard -> Dashboard Admin | |
| General Admin | |
| OverageBanner -> Billing | |
| NearOverageBanner -> Billing | |
| Dashboard Admin | |
| OverageMessage -> Usage | |
| NearOverageMessage -> Usage | |
| Account | |
| Usage -> Usage | |
| Billing -> Billing | |
| Usage | |
| Billing |
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){ | |
| if (model.active_states[0].image_url) { | |
| return $("img", | |
| {src: model.active_states[0].image_url, style: {width: "1204px", border: "2px solid silver"}}); | |
| } else { | |
| let current_state_name = model.active_states[0].name; | |
| return $("h1", | |
| {style: {color: "darkBlue"}}, | |
| `The current screen is: ${current_state_name}`); } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

