Skip to content

Commit

Permalink
Apply WebStorm formatting, see phetsims/phet-info#155
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Apr 1, 2021
1 parent 508ad4b commit 91a4154
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion js/CCKCConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import circuitConstructionKitCommon from './circuitConstructionKitCommon.js';

// constants
const FONT_SIZE = 14;
const AC_CAROUSEL_SCALE=1;
const AC_CAROUSEL_SCALE = 1;

// constants
const CCKCConstants = {
Expand Down
2 changes: 1 addition & 1 deletion js/view/SensorToolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class SensorToolbox extends CCKCPanel {
maxWidth: 60,
tandem: tandem.createTandem( 'voltmeterLabel' )
} );
const ammeterText = new Text( options.showSeriesAmmeters && options.showNoncontactAmmeters? ammetersString : ammeterString, {
const ammeterText = new Text( options.showSeriesAmmeters && options.showNoncontactAmmeters ? ammetersString : ammeterString, {
maxWidth: 60,
tandem: tandem.createTandem( 'ammeterLabel' )
} );
Expand Down
2 changes: 1 addition & 1 deletion js/view/ViewRadioButtonGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class ViewRadioButtonGroup extends RectangularRadioButtonGroup {
cornerRadius: CCKCConstants.CORNER_RADIUS,
tandem: tandem,
touchAreaXDilation: 9,
touchAreaYDilation:10
touchAreaYDilation: 10
}, options );

// Create a battery which can be used in the views
Expand Down
2 changes: 1 addition & 1 deletion js/view/VoltageChartNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class VoltageChartNode extends CCKCChartNode {
constructor( circuitLayerNode, timeProperty, visibleBoundsProperty, options ) {

options = merge( {
defaultZoomLevel: new Range(-10,10),
defaultZoomLevel: new Range( -10, 10 ),
timeDivisions: CCKCConstants.NUMBER_OF_TIME_DIVISIONS,
tandem: Tandem.OPTIONAL
}, options );
Expand Down
2 changes: 1 addition & 1 deletion js/view/ZoomControlPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ZoomControlPanel extends MagnifyingGlassZoomButtonGroup {
baseColor: PhetColorScheme.BUTTON_YELLOW
},
magnifyingGlassNodeOptions: {
scale:0.7
scale: 0.7
},
touchAreaXDilation: 9,
touchAreaYDilation: 10
Expand Down

0 comments on commit 91a4154

Please sign in to comment.