Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 476 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 476 Bytes

calendar

Calendar project that enters events by running a function.

This is a simple project that enters tasks into a calendar by calling the function layOutDay() with an array of objects that have the properties start and end. e.g., layOutDay([ {start: 30, end: 150}, {start: 540, end: 600}, {start: 560, end: 620}, {start: 610, end: 670} ]);

All time values are in minutes and start at 9am. So {start:120, end:180) represents an event from 11:00am to 11:30am.