mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 08:38:30 -05:00
Merge pull request #11 from tmickel/js-bundle
Only include app.bundle.js in app bundles
This commit is contained in:
commit
2d819b86a3
10 changed files with 9 additions and 9 deletions
1
editions/free/src/app.bundle.js
Symbolic link
1
editions/free/src/app.bundle.js
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../../src/build/bundles/app.bundle.js
|
|
@ -11,7 +11,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'editor';
|
window.scratchJrPage = 'editor';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="app.bundle.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body style="background: white;">
|
<body style="background: white;">
|
||||||
<div class="frame" id="frame"></div>
|
<div class="frame" id="frame"></div>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<script language="javascript">
|
<script language="javascript">
|
||||||
window.scratchJrPage = 'gettingStarted';
|
window.scratchJrPage = 'gettingStarted';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="app.bundle.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'home';
|
window.scratchJrPage = 'home';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="app.bundle.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'inappAbout';
|
window.scratchJrPage = 'inappAbout';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="../jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="../app.bundle.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'inappBlocksGuide';
|
window.scratchJrPage = 'inappBlocksGuide';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="../jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="../app.bundle.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'inappInterfaceGuide';
|
window.scratchJrPage = 'inappInterfaceGuide';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="../jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="../app.bundle.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'inappPaintEditorGuide';
|
window.scratchJrPage = 'inappPaintEditorGuide';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="../jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="../app.bundle.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<script>
|
<script>
|
||||||
window.scratchJrPage = 'index';
|
window.scratchJrPage = 'index';
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="jssource/build/bundles/app.bundle.js"></script>
|
<script type="text/javascript" src="app.bundle.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body style="margin:0px; background: black;">
|
<body style="margin:0px; background: black;">
|
||||||
<div class="frame" id="frame">
|
<div class="frame" id="frame">
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../../../src/
|
|
Loading…
Reference in a new issue