web-workout/App.js

15 lines
510 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
fetch('routine.json')
.then(response => response.json())
.then(workout_json => {
// Use the JSON workout_json here
console.log(workout_json);
const wo = new Workout(document.getElementById("content-wrapper"),
workout_json);
wo.render();
})
.catch(error => {
console.error('Error fetching JSON:', error);
});
});