Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ginsterbusch/bf515f534556c1a45a3fcf207d73c272 to your computer and use it in GitHub Desktop.
Save ginsterbusch/bf515f534556c1a45a3fcf207d73c272 to your computer and use it in GitHub Desktop.
Improved example function
function BlogPost(postData) {
var class = 'sponsored-post',
checked = 'checked="checked"',
title = '<img src="/my/path/badge.png" />';
if( !postData.isSponsored ) {
class = checked = title = '';
}
return '<div class="post ${class}">' +
'<input type="checkbox" ${checked}>' +
'<h1>' + '${postData.title} ${title}' + '</h1>' +
'<h3>By ${postData.author}</h3>' +
'<p>${postData.body}</p>' +
'</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment