Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Denz1994 committed Mar 3, 2020
2 parents fdac623 + 9108fc4 commit 68e90cc
Showing 1 changed file with 70 additions and 28 deletions.
98 changes: 70 additions & 28 deletions build-a-molecule_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="phet-sim-level" content="development">

<title>build-a-molecule</title>
</head>

Expand All @@ -19,33 +19,75 @@

window.phet = window.phet || {};
window.phet.chipper = window.phet.chipper || {};
window.phet.chipper.packageObject = {
"name": "build-a-molecule",
"version": "0.0.0-dev.58",
"license": "GPL-3.0",
"repository": { "type": "git", "url": "https://github.com/phetsims/build-a-molecule.git" },
"devDependencies": { "grunt": "~1.0.0" },
"phet": {
"requirejsNamespace": "BUILD_A_MOLECULE",
"phetLibs": [ "mobius", "nitroglycerin", "vegas", "twixt" ],
"preload": [ "../sherpa/lib/three-r104.js" ],
"runnable": true,
"supportedBrands": [ "phet", "adapted-from-phet" ],
"supportsSound": true,
"simulation": true
},
"eslintConfig": { "extends": "../chipper/eslint/sim_eslintrc.js", "globals": { "THREE": false } }
};
window.phet.chipper.stringRepos = [ {
"repo": "build-a-molecule",
"requirejsNamespace": "BUILD_A_MOLECULE"
}, { "repo": "joist", "requirejsNamespace": "JOIST" }, {
"repo": "scenery-phet",
"requirejsNamespace": "SCENERY_PHET"
}, { "repo": "sun", "requirejsNamespace": "SUN" }, {
"repo": "tambo",
"requirejsNamespace": "TAMBO"
}, { "repo": "twixt", "requirejsNamespace": "TWIXT" }, { "repo": "vegas", "requirejsNamespace": "VEGAS" } ];
window.phet.chipper.packageObject =
{
"name": "build-a-molecule",
"version": "0.0.0-dev.58",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/phetsims/build-a-molecule.git"
},
"devDependencies": {
"grunt": "~1.0.0"
},
"phet": {
"requirejsNamespace": "BUILD_A_MOLECULE",
"phetLibs": [
"mobius",
"nitroglycerin",
"vegas",
"twixt"
],
"preload": [
"../sherpa/lib/three-r104.js"
],
"runnable": true,
"supportedBrands": [
"phet",
"adapted-from-phet"
],
"supportsSound": true,
"simulation": true
},
"eslintConfig": {
"extends": "../chipper/eslint/sim_eslintrc.js",
"globals": {
"THREE": false
}
}
};
window.phet.chipper.stringRepos =
[
{
"repo": "build-a-molecule",
"requirejsNamespace": "BUILD_A_MOLECULE"
},
{
"repo": "joist",
"requirejsNamespace": "JOIST"
},
{
"repo": "scenery-phet",
"requirejsNamespace": "SCENERY_PHET"
},
{
"repo": "sun",
"requirejsNamespace": "SUN"
},
{
"repo": "tambo",
"requirejsNamespace": "TAMBO"
},
{
"repo": "twixt",
"requirejsNamespace": "TWIXT"
},
{
"repo": "vegas",
"requirejsNamespace": "VEGAS"
}
];

// Identify the brand (assume generated brand if not provided with query parameters)
const brandMatch = location.search.match( /brand=([^&]+)/ );
Expand Down

0 comments on commit 68e90cc

Please sign in to comment.