Skip to content

Commit

Permalink
fix(md-checkbox): rename attributes for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanood committed Nov 24, 2016
1 parent d6c9cc9 commit 46b881f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/checkbox/checkbox.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<input type="checkbox" id="${controlId}" checked.bind="mdChecked" matcher.bind="matcher" model.bind="model" ref="checkbox" />
<input type="checkbox" id="${controlId}" checked.bind="mdChecked" matcher.bind="mdMatcher" model.bind="mdModel" ref="checkbox" />
<label for="${controlId}">
<slot></slot>
</label>
Expand Down
4 changes: 2 additions & 2 deletions src/checkbox/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export class MdCheckbox {
}) mdChecked;
@bindable() mdDisabled;
@bindable() mdFilledIn;
@bindable() matcher;
@bindable() model;
@bindable() mdMatcher;
@bindable() mdModel;

constructor(element) {
this.element = element;
Expand Down

0 comments on commit 46b881f

Please sign in to comment.