Skip to content

Commit

Permalink
Run grunt update, see phetsims/chipper#1148
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Nov 19, 2021
1 parent 56deba3 commit 3ee410c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-a-fraction_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@

// Module loading in compilation-free (development) mode will be kicked off once strings are loaded.
// This is done in load-unbuilt-strings.js
window.phet.chipper.loadModules = () => loadURL( 'js/build-a-fraction-main.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/build-a-fraction/js/build-a-fraction-main.js', 'module' );
</script>
</body>
</html>
15 changes: 13 additions & 2 deletions js/buildAFractionStrings.js → js/buildAFractionStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,22 @@
/**
* Auto-generated from modulify, DO NOT manually modify.
*/

/* eslint-disable */
import getStringModule from '../../chipper/js/getStringModule.js';
import buildAFraction from './buildAFraction.js';

const buildAFractionStrings = getStringModule( 'BUILD_A_FRACTION' );
type StringsType = {
'build-a-fraction': {
'title': string
},
'screen': {
'buildAFraction': string,
'mixedNumbers': string,
'lab': string
}
};

const buildAFractionStrings = getStringModule( 'BUILD_A_FRACTION' ) as StringsType;

buildAFraction.register( 'buildAFractionStrings', buildAFractionStrings );

Expand Down

0 comments on commit 3ee410c

Please sign in to comment.