Skip to content

Commit

Permalink
docs: update mixin method ids (#1365)
Browse files Browse the repository at this point in the history
  • Loading branch information
callmehiphop authored and stephenplusplus committed Jun 7, 2016
1 parent 625adf8 commit bb6b6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ function getMixinMethods(comments) {
if (block.ctx.type === 'property') {
name = block.ctx.string.replace(/^\w+\./, '');
methods.forEach(function(method) {
method.name = [name, method.name].join('.');
method.id = method.name = [name, method.name].join('.');
});
}

Expand Down

0 comments on commit bb6b6c4

Please sign in to comment.