Skip to content

Commit

Permalink
var -> const using eslint auto fix, phetsims/tasks#1012
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Sep 19, 2019
1 parent 7336317 commit bc49e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/common/view/LineOptionsNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ define( require => {
} ), { xAlign: 'left', group: alignGroup } );

// Max width must be set to the maxWidth of the alignGroup based on its content.
var contentSpacing = DEFAULT_CONTENT_SPACING - alignGroup.getMaxWidth();
const contentSpacing = DEFAULT_CONTENT_SPACING - alignGroup.getMaxWidth();

// Checkbox group for line options
const lineOptionsCheckboxGroup = new VerticalCheckboxGroup( [ {
Expand Down

0 comments on commit bc49e2f

Please sign in to comment.