Skip to content

Commit

Permalink
Output HTML with formatting consistent with our code style, see phets…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Mar 3, 2020
1 parent d08a9dc commit f056e40
Showing 1 changed file with 55 additions and 22 deletions.
77 changes: 55 additions & 22 deletions tappi_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>tappi</title>
</head>

Expand All @@ -19,27 +19,60 @@

window.phet = window.phet || {};
window.phet.chipper = window.phet.chipper || {};
window.phet.chipper.packageObject = {
"name": "tappi",
"version": "1.0.0-dev.1",
"license": "GPL-3.0",
"repository": { "type": "git", "url": "https://github.com/phetsims/tappi.git" },
"devDependencies": { "grunt": "~1.0.0" },
"phet": {
"requirejsNamespace": "TAPPI",
"phetLibs": [ "griddle" ],
"runnable": true,
"supportedBrands": [ "phet", "adapted-from-phet" ]
},
"eslintConfig": { "extends": "../chipper/eslint/sim_es6_eslintrc.js" }
};
window.phet.chipper.stringRepos = [ { "repo": "griddle", "requirejsNamespace": "GRIDDLE" }, {
"repo": "joist",
"requirejsNamespace": "JOIST"
}, { "repo": "scenery-phet", "requirejsNamespace": "SCENERY_PHET" }, {
"repo": "sun",
"requirejsNamespace": "SUN"
}, { "repo": "tambo", "requirejsNamespace": "TAMBO" }, { "repo": "tappi", "requirejsNamespace": "TAPPI" } ];
window.phet.chipper.packageObject =
{
"name": "tappi",
"version": "1.0.0-dev.1",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/phetsims/tappi.git"
},
"devDependencies": {
"grunt": "~1.0.0"
},
"phet": {
"requirejsNamespace": "TAPPI",
"phetLibs": [
"griddle"
],
"runnable": true,
"supportedBrands": [
"phet",
"adapted-from-phet"
]
},
"eslintConfig": {
"extends": "../chipper/eslint/sim_es6_eslintrc.js"
}
};
window.phet.chipper.stringRepos =
[
{
"repo": "griddle",
"requirejsNamespace": "GRIDDLE"
},
{
"repo": "joist",
"requirejsNamespace": "JOIST"
},
{
"repo": "scenery-phet",
"requirejsNamespace": "SCENERY_PHET"
},
{
"repo": "sun",
"requirejsNamespace": "SUN"
},
{
"repo": "tambo",
"requirejsNamespace": "TAMBO"
},
{
"repo": "tappi",
"requirejsNamespace": "TAPPI"
}
];

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

0 comments on commit f056e40

Please sign in to comment.