From 30c28087c8d4a37fbaa85ab39f45abf460d3cdba Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Wed, 26 Apr 2023 13:33:08 -0500 Subject: [PATCH] Fallback for IE. It could happen... --- src/wp-a11y-day/js/talk-time.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wp-a11y-day/js/talk-time.js b/src/wp-a11y-day/js/talk-time.js index 875a985..f996db8 100644 --- a/src/wp-a11y-day/js/talk-time.js +++ b/src/wp-a11y-day/js/talk-time.js @@ -2,6 +2,10 @@ 'use strict'; $(function () { var zone = Intl.DateTimeFormat().resolvedOptions().timeZone; + // Handle IE fallback. + if ( undefined === zone ) { + zone = 'your local time'; + } /** * Render speaker application input times to local timezones. */