Skip to content
Snippets Groups Projects

feat/add preview of image in workout if image file

Merged Haakon Gunleiksrud requested to merge feat/display_workout_image into master
1 file
+ 9
0
Compare changes
  • Side-by-side
  • Inline
@@ -41,7 +41,19 @@ async function retrieveWorkout(id) {
let pathArray = file.file.split("/");
a.text = pathArray[pathArray.length - 1];
a.className = "me-2";
let img
let isImage = ["jpg", "png", "gif", "jpeg", "JPG", "PNG", "GIF", "JPEG"].includes(a.text.split(".")[1]);
if(isImage){
img = document.createElement("img");
img.src = file.file;
img.width = "500";
}
filesDiv.appendChild(a);
if(isImage){
filesDiv.appendChild(img);
}
}
// create exercises
Loading