Making improvements

This commit is contained in:
Brian McGonagill 2026-02-04 17:05:47 -06:00
parent 78e0e82449
commit dd7e4a4933
11 changed files with 349 additions and 52 deletions

View file

@ -45,5 +45,11 @@ Template.workouts.events({
}
addWorkout();
}
}
},
'click .routine' (e) {
let routineId = e.currentTarget.id;
console.log("Routine ID set: " + routineId);
Session.set("routineId", routineId);
FlowRouter.go('/workoutLog');
},
});