Skip to content

Commit

Permalink
fix(tab-bar): Remove trailing comma from function. (#3574)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamernest committed Sep 17, 2018
1 parent 43aeea4 commit e201d24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/mdc-tab-bar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ class MDCTabBar extends MDCComponent {
*/
initialize(
tabFactory = (el) => new MDCTab(el),
tabScrollerFactory = (el) => new MDCTabScroller(el),
) {
tabScrollerFactory = (el) => new MDCTabScroller(el)) {
this.tabFactory_ = tabFactory;
this.tabScrollerFactory_ = tabScrollerFactory;

Expand Down

0 comments on commit e201d24

Please sign in to comment.