diaspora/app/assets/javascripts/app/helpers/o_embed.js
2012-05-21 12:33:28 -07:00

14 lines
No EOL
361 B
JavaScript

(function(){
app.helpers.oEmbed = {
html : function (o_embed_cache) {
if (!o_embed_cache) { return "" }
var data = o_embed_cache.data;
if (data.type == "photo") {
return '<img src="' + data.url + '" width="' + data.width + '" height="' + data.height + '" />'
} else {
return data.html || ""
}
}
}
})();