Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ var oneLoc = new Location(firstPerson, firstLocation, 'one'); //first person's n
var twoLoc = new Location(secondPerson, secondLocation, 'two'); //first person's name as string, location (City, Country) as string

//last day of contact (year, month, day)
var timeLeaveStamp = new Date(2020, 01, 01);
var timeLeaveStamp = new Date("2020, 01, 01");

//first day of renewed contact (year, month, day)
var timeMeetStamp = new Date(2024, 11, 25);
var timeMeetStamp = new Date("2024, 11, 25");

//earliest and latest time appropirate for call
var earliestCall = 8;
Expand Down