|  |  | @ -4,9 +4,9 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  |     function getNextMeetingDate() { |  |  |  |     function getNextMeetingDate() { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	let today = Date.today(); |  |  |  | 	let today = Date.today(); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	// Are we past the fourth Tuesday of a month? |  |  |  | 	// Are we past the fourth Tuesday of a month? | 
			
		
	
		
		
			
				
					
					|  |  |  | 	var secondMonday = today.second().monday(); |  |  |  | 	var secondMonday = today.clone().second().monday(); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	var fourthTuesday = today.fourth().tuesday(); |  |  |  | 	var fourthTuesday = today.clone().fourth().tuesday(); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (today > fourthTuesday) { |  |  |  | 	if (today > fourthTuesday == 1) { | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	    var nextDate = (1).months().fromNow().second().monday(); |  |  |  | 	    var nextDate = (1).months().fromNow().second().monday(); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} else if (today <= secondMonday) { |  |  |  | 	} else if (today <= secondMonday) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	    // Are we before the second Monday? |  |  |  | 	    // Are we before the second Monday? | 
			
		
	
	
		
		
			
				
					|  |  | 
 |