FoodCycle LA recovers and diverts surplus food to communities experiencing food insecurity. We partner with food retailers to reroute surplus food away from landfills to organizations working to feed hungry people.
The Downtown Women’s Center (DWC) envisions a Los Angeles with every woman housed and on a path to personal stability. Its mission is to end homelessness for women in greater Los Angeles through housing, wellness, employment, and advocacy.
The Bee Conservancy is dedicated to protecting bees, safeguarding the environment, and securing food justice through education, research, habitat creation, and advocacy. They strive towards a day when all bee populations thrive in protected habitats, and are supported by an engaged global network.
Having trouble seeing the sign up form? Try refreshing this page. If you're still having trouble, you can always email us at info@annesisteron.com.
function duringBusinessHours(businessHoursData) {
const accountTimezone = businessHoursData['timezone']
const localNow = moment()
return businessHoursData['business_hours'].some(function(businessHour) {
const businessHoursDays = businessHour['days'].split(',')
return businessHoursDays.some(function(businessHourDay) {
const day = moment().tz(accountTimezone)
.startOf('week')
.add(businessHourDay % 7, 'days')
const fromTime = day.clone()
.add(businessHour['from_time'].split(':')[0], 'hours')
.add(businessHour['from_time'].split(':')[1], 'minutes')
const toTime = day.clone()
.add(businessHour['to_time'].split(':')[0], 'hours')
.add(businessHour['to_time'].split(':')[1], 'minutes')
return fromTime <= localNow && localNow < toTime
})
})
}
// Set your timezone using the tz database name format (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
// Set your business hours. Days are numbered 1 to 7, starting with Monday. Time is set in 24 hours format.
var businessHoursData = {
'timezone': 'US/Pacific',
'business_hours': [{
'days': '1,2,3,4,5',
'from_time': '10:00',
'to_time': '17:00'
}]
}
var gorgiasChatInterval = window.setInterval(function() {
var container = document.querySelector('#gorgias-chat-container')
if (container) {
window.clearInterval(gorgiasChatInterval); // this line breaks out of the loop - make sure it's not deleted.
if (!duringBusinessHours(businessHoursData)) {
container.remove()
}
}
}, 50);