I'm trying to use the TimeZone option in Bootstrap 4's Tempus Dominus (calendar) functionality. That option uses moment-timezone, of which I have already added the CDN.
My objective is to make the timezone EST (GMT-5), where right now it's guessing my local timezone which is ET (The data I'm parsing doesn't take EDT into account, so ET won't work right). How do I accomplish this? What parameter do I give the timeZone option below:
$('#datetimepicker1').datetimepicker({timeZone: /*...*/, format: "MM/DD/YY kk:mm", useCurrent: false, defaultDate: dataArr[3][0][0], minDate: dataArr[3][0][0], maxDate: dataArr[3][dataArr[3].length - 1][0]});