Last active
February 25, 2020 16:52
-
-
Save skladany/02276bd8f3e1e0cd397226efaef7f8a7 to your computer and use it in GitHub Desktop.
Single-Post Card Settings
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
Single-Post Card Settings | |
Disable Feature | |
click -> Feature Disabled | |
New-UI On | |
click -> New-UI Off | |
New-UI Off | |
click -> New-UI On | |
Feature Disabled |
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){ | |
if (model.active_states[0].image_url) { | |
return $("img", | |
{src: model.active_states[0].image_url, style: {height: "100%"}}); | |
} else { | |
return "Featured Disabled." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment