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 3b68596 commit 4ff58b6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buoyancy_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,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/buoyancy-main.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/buoyancy/js/buoyancy-main.js', 'module' );
</script>
</body>
</html>
16 changes: 14 additions & 2 deletions js/buoyancyStrings.js → js/buoyancyStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,23 @@
/**
* Auto-generated from modulify, DO NOT manually modify.
*/

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

const buoyancyStrings = getStringModule( 'BUOYANCY' );
type StringsType = {
'buoyancy': {
'title': string
},
'screen': {
'intro': string,
'explore': string,
'shapes': string,
'applications': string
}
};

const buoyancyStrings = getStringModule( 'BUOYANCY' ) as StringsType;

buoyancy.register( 'buoyancyStrings', buoyancyStrings );

Expand Down

0 comments on commit 4ff58b6

Please sign in to comment.