Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Button(label, className, animate, eventListener, callbac

const addKoala = (button) => {
const koala = document.createElement('img');
koala.src = '/cute_koala.png';
koala.src = './cute_koala.png';
koala.classList.add('koala', 'hidden');

button.onmouseover = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/timer/quiz-timer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function createTimer() {
clock.setAttribute('id', 'clock');

const image = document.createElement('img');
image.src = '/timer.png';
image.src = './timer.png';

const minutes = document.createElement('span');
minutes.setAttribute('id', 'timer-minutes');
Expand Down