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 5e7b5bf commit 9f049a4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
/**
* Auto-generated from modulify, DO NOT manually modify.
*/

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

const vectorAdditionEquationsStrings = getStringModule( 'VECTOR_ADDITION_EQUATIONS' );
type StringsType = {
'vector-addition-equations': {
'title': string
}
};

const vectorAdditionEquationsStrings = getStringModule( 'VECTOR_ADDITION_EQUATIONS' ) as StringsType;

vectorAdditionEquations.register( 'vectorAdditionEquationsStrings', vectorAdditionEquationsStrings );

Expand Down
2 changes: 1 addition & 1 deletion vector-addition-equations_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,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/vector-addition-equations-main.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/vector-addition-equations/js/vector-addition-equations-main.js', 'module' );
</script>
</body>
</html>

0 comments on commit 9f049a4

Please sign in to comment.