Skip to content

Instantly share code, notes, and snippets.

@d4hines
Forked from ryanlucas/Hi.jpg
Created October 22, 2019 16:14
Show Gist options
  • Save d4hines/34b7f5338c9c7313922b1bbab6a45859 to your computer and use it in GitHub Desktop.
Save d4hines/34b7f5338c9c7313922b1bbab6a45859 to your computer and use it in GitHub Desktop.
Image Prototype Demo
Image Prototype Demo
You are here
click -> Hi
Hi
click -> You are here
function render(model){
if (model.active_states[0].image_url) {
return $("img",
{src: model.active_states[0].image_url, style: {height: "100%"}});
} else {
return "No image available."
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment