Would be great if working hours could be:
var workinghours = {
0: ['12:00:00', '04:00:00'],
1: ['12:00:00', '04:00:00'],
2: ['12:00:00', '04:00:00'],
3: ['12:00:00', '04:00:00'],
4: ['12:00:00', '04:00:00'],
5: ['12:00:00', '04:00:00'],
6: ['12:00:00', '04:00:00']
}
meaning noon to 4am the next day.
Alternatively, a way to have multiple ranges to achieve the same result
var workinghours = {
0: [['12:00:00', '24:00:00'], [['00:00:00', '04:00:00']],
}
Would be great if working hours could be:
meaning noon to 4am the next day.
Alternatively, a way to have multiple ranges to achieve the same result
var workinghours = {
0: [['12:00:00', '24:00:00'], [['00:00:00', '04:00:00']],
}