Skip to content

Commit

Permalink
fix(icon-toggle): Use correct fn signature for rmAttr adapter method (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
traviskaufman authored Jan 30, 2017
1 parent fd04c83 commit c82d447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mdc-icon-toggle/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class MDCIconToggle extends MDCComponent {
},
getAttr: (name, value) => this.root_.getAttribute(name, value),
setAttr: (name, value) => this.root_.setAttribute(name, value),
rmAttr: (name, value) => this.root_.removeAttribute(name, value),
rmAttr: (name) => this.root_.removeAttribute(name),
notifyChange: (evtData) => this.emit('MDCIconToggle:change', evtData),
});
}
Expand Down

0 comments on commit c82d447

Please sign in to comment.