aboutsummaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorTeddy Wing2013-04-28 00:56:35 -0400
committerTeddy Wing2013-04-28 00:56:35 -0400
commita1a3d44c8703f7f63a51106fa8777c2f3eee8e89 (patch)
treedcb558930638a3103fe4d5e2b551c8a18bae3c6c /views
parent6331e7dbb295700772548ac6b07a501c0309013b (diff)
downloadWho-am-I-a1a3d44c8703f7f63a51106fa8777c2f3eee8e89.tar.bz2
Dynamically fetch character images from TMS API
* /character-images endpoint now dynamically fetches images from the TMS API * Add a config.js file
Diffstat (limited to 'views')
-rw-r--r--views/index.ejs2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/index.ejs b/views/index.ejs
index 0f11731..d7282b6 100644
--- a/views/index.ejs
+++ b/views/index.ejs
@@ -48,7 +48,7 @@
<script type="text/template" id="character-image-template">
<div class="item">
- <img class="content" src="{{ image }}" alt="{{ name }}" />
+ <img class="content" src="http://developer.tmsimg.com/{{ image }}" alt="{{ name }}" />
<div class="caption">{{ name }}</div>
</div>
</script>