Skip to content

Commit

Permalink
Restructure the directories of the project
Browse files Browse the repository at this point in the history
  • Loading branch information
loehnertz committed Jun 8, 2024
1 parent 758904a commit d7bb54d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>🍵 Gong Fu Tea Timer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<link href="./style/styles.css" rel="stylesheet">
</head>
<body>
<div class="section" id="app">
Expand Down Expand Up @@ -131,6 +131,6 @@ <h1 class="title is-1 has-text-centered">🍵</h1>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
<script src="script.js"></script>
<script src="./script/app.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion script.js → script/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ new Vue({
},
},
async mounted() {
this.timerWorker = new Worker('./timerWorker.js');
this.timerWorker = new Worker('./script/timerWorker.js');
this.timerWorker.onmessage = await this.handleWorkerMessage;

await this.beepWarning.load();
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit d7bb54d

Please sign in to comment.