Skip to content

Commit

Permalink
Merge pull request #8 from zxqfox/hotfix/bh-templates
Browse files Browse the repository at this point in the history
Blockquote, paragraph: fixup bh templates
  • Loading branch information
awinogradov committed Mar 12, 2015
2 parents 1f9a624 + 938b8f5 commit e2ef607
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions common.blocks/blockquote/blockquote.bh.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ module.exports = function(bh) {
ctx.content([
{
block : 'paragraph',
mix : { block : ctx.block, elem : 'content' },
mix : { block : json.block, elem : 'content' },
content : ctx.content()
},
json.source && {
elem : 'footer',
tag : 'footer',
content : json.source
}
]);
], true);
});

};
2 changes: 1 addition & 1 deletion common.blocks/paragraph/paragraph.bh.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function(bh) {
content : json.mark
},
ctx.content()
]);
], true);
});

};

0 comments on commit e2ef607

Please sign in to comment.