-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add repo to migration list, see phetsims/chipper#875
- Loading branch information
Showing
5 changed files
with
86 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,29 +5,25 @@ | |
* | ||
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
define( require => { | ||
'use strict'; | ||
|
||
// modules | ||
const DecimalsScreen = require( 'AREA_MODEL_COMMON/screens/DecimalsScreen' ); | ||
const Sim = require( 'JOIST/Sim' ); | ||
const SimLauncher = require( 'JOIST/SimLauncher' ); | ||
import DecimalsScreen from '../../area-model-common/js/screens/DecimalsScreen.js'; | ||
import Sim from '../../joist/js/Sim.js'; | ||
import SimLauncher from '../../joist/js/SimLauncher.js'; | ||
import areaModelDecimalsStrings from './area-model-decimals-strings.js'; | ||
|
||
// strings | ||
const areaModelDecimalsTitleString = require( 'string!AREA_MODEL_DECIMALS/area-model-decimals.title' ); | ||
const areaModelDecimalsTitleString = areaModelDecimalsStrings[ 'area-model-decimals' ].title; | ||
|
||
const simOptions = { | ||
credits: { | ||
leadDesign: 'Amy Hanson, Amanda McGarry', | ||
softwareDevelopment: 'Jonathan Olson', | ||
team: 'Karina Hensberry, Susan Miller, Ariel Paul, Kathy Perkins, Oliver Nix', | ||
qualityAssurance: 'Steele Dalton, Bryce Griebenow, Ethan Johnson, Liam Mulhall, Ben Roberts, Jacob Romero, Ethan Ward, Clara Wilson, Kathryn Woessner', | ||
graphicArts: 'Mariah Hermsmeyer, Amanda McGarry, Diana L\u00f3pez Tavares' | ||
} | ||
}; | ||
const simOptions = { | ||
credits: { | ||
leadDesign: 'Amy Hanson, Amanda McGarry', | ||
softwareDevelopment: 'Jonathan Olson', | ||
team: 'Karina Hensberry, Susan Miller, Ariel Paul, Kathy Perkins, Oliver Nix', | ||
qualityAssurance: 'Steele Dalton, Bryce Griebenow, Ethan Johnson, Liam Mulhall, Ben Roberts, Jacob Romero, Ethan Ward, Clara Wilson, Kathryn Woessner', | ||
graphicArts: 'Mariah Hermsmeyer, Amanda McGarry, Diana L\u00f3pez Tavares' | ||
} | ||
}; | ||
|
||
SimLauncher.launch( function() { | ||
const sim = new Sim( areaModelDecimalsTitleString, [ new DecimalsScreen() ], simOptions ); | ||
sim.start(); | ||
} ); | ||
} ); | ||
SimLauncher.launch( function() { | ||
const sim = new Sim( areaModelDecimalsTitleString, [ new DecimalsScreen() ], simOptions ); | ||
sim.start(); | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright 2020, University of Colorado Boulder | ||
|
||
/** | ||
* Auto-generated from modulify, DO NOT manually modify. | ||
*/ | ||
|
||
import getStringModule from '../../chipper/js/getStringModule.js'; | ||
import areaModelDecimals from './areaModelDecimals.js'; | ||
|
||
const areaModelDecimalsStrings = getStringModule( 'AREA_MODEL_DECIMALS' ); | ||
|
||
areaModelDecimals.register( 'areaModelDecimalsStrings', areaModelDecimalsStrings ); | ||
|
||
export default areaModelDecimalsStrings; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2020, University of Colorado Boulder | ||
|
||
/** | ||
* Creates the namespace for this simulation. | ||
*/ | ||
|
||
// modules | ||
import Namespace from '../../phet-core/js/Namespace.js'; | ||
|
||
export default new Namespace( 'areaModelDecimals' ); |