Skip to content

Commit

Permalink
Updated to new import statement casing
Browse files Browse the repository at this point in the history
  • Loading branch information
HousebirdGames committed Feb 12, 2024
1 parent 37f7af7 commit 9923da7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions root_EXAMPLE/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, viewport-fit=cover">
<meta name="description" content="I built this Web App with Birdhouse!">
<title class="title">My Birdhouse Web App</title>
<link rel="preload" href="birdhouse/fonts/MaterialIcons-Regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="Birdhouse/fonts/MaterialIcons-Regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="icon" type="image/png" sizes="16x16" href="img/favicons/Favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicons/Favicon-32x32.png">
<link rel="icon" type="image/png" sizes="64x64" href="img/favicons/Favicon-64x64.png">
Expand All @@ -19,17 +19,17 @@
<meta name="theme-color" content="#ffffff">
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self'; font-src 'self'; connect-src 'self'; object-src 'none';">
<link rel="stylesheet" href="birdhouse/default-style.css">
<link rel="stylesheet" href="Birdhouse/default-style.css">
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="manifest.json">
<script type="module" src="birdhouse/service-worker-registration.js"></script>
<script type="module" src="Birdhouse/service-worker-registration.js"></script>
</head>

<body class="displayNone">
<div id="adminBar"></div>
<div id="infoBar"></div>
<header id="header" class="noLogo">
<p>HEADER</p>
<p>HEADER</p>
</header>

<noscript>
Expand All @@ -41,7 +41,7 @@
<br>
</noscript>

<script type="module" src="birdhouse/src/main.js" defer></script>
<script type="module" src="Birdhouse/src/main.js" defer></script>

<div id="content">
<h1>CONTENT</h1>
Expand All @@ -52,7 +52,8 @@ <h1>CONTENT</h1>
<div id="newUpdatePopupContent" class="popup-content">
<h2 id="newUpdateAvailable">New Update available</h2>
<p class="versionInfo" id="versionInfo"></p>
<p class="">Click "Update Now" to immediately install the latest version. Alternatively, "Update Later" will close this popup and schedule the automatic update
<p class="">Click "Update Now" to immediately install the latest version. Alternatively, "Update Later" will
close this popup and schedule the automatic update
at a later time.</p>
<div class="linkRow">
<button id="update-version-btn" class="update-version-btn highlight">Update now</button>
Expand Down
2 changes: 1 addition & 1 deletion root_EXAMPLE/src/components/example-inputs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { updateTitleAndMeta } from "../../birdhouse/src/main.js";
import { updateTitleAndMeta } from "../../Birdhouse/src/main.js";

export default async function ExampleInputs() {
updateTitleAndMeta('Example Inputs', 'This is an input example page.');
Expand Down
2 changes: 1 addition & 1 deletion root_EXAMPLE/src/components/example.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getQueryParameterByName, updateOrAddQueryParameter, updateTitleAndMeta, alertPopup } from "../../birdhouse/src/main.js";
import { getQueryParameterByName, updateOrAddQueryParameter, updateTitleAndMeta, alertPopup } from "../../Birdhouse/src/main.js";

export default async function Example(exampleData) {
updateTitleAndMeta('Example Page', 'This is an example page.');
Expand Down

0 comments on commit 9923da7

Please sign in to comment.