Skip to content

Commit

Permalink
button.bemhtml: Add return before applyNext for #1495
Browse files Browse the repository at this point in the history
  • Loading branch information
tadatuta committed Jul 24, 2015
1 parent 2425f87 commit e630eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.blocks/button/button.bemhtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ block('button')(
var tag = apply('tag'),
isRealButton = (tag === 'button') && (!this.mods.type || this.mods.type === 'submit');

applyNext({ _isRealButton : isRealButton });
return applyNext({ _isRealButton : isRealButton });
}),

tag()(function() {
Expand Down

0 comments on commit e630eff

Please sign in to comment.