Major new version #2

Merged
LeoVasanko merged 86 commits from vol002 into main 2025-08-26 05:58:24 +01:00
Showing only changes of commit ebc8f80dbd - Show all commits

View File

@ -273,12 +273,6 @@ function applyRangeDuringDrag(st, startDate, endDate) {
} }
store.setEventRange(st.id, startDate, endDate, { mode: st.mode }) store.setEventRange(st.id, startDate, endDate, { mode: st.mode })
} }
function timeToMinutes(timeStr) {
if (!timeStr) return 0
const [hours, minutes] = timeStr.split(':').map(Number)
return hours * 60 + minutes
}
</script> </script>
<style scoped> <style scoped>