0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/lib/mobiledoc/cards/image.js

10 lines
253 B
JavaScript

module.exports = {
name: 'card-image',
type: 'dom',
render(opts) {
var img = opts.env.dom.createElement('img');
img.className = 'kg-card-image';
img.setAttribute('src', opts.payload.img);
return img;
}
};