diff --git a/broadcast_timer/events.js b/broadcast_timer/events.js
index aac7d83..4a00554 100644
--- a/broadcast_timer/events.js
+++ b/broadcast_timer/events.js
@@ -40,9 +40,14 @@ var events = [
"notes": ""
},
{
- "date": "May 28, 2019 14:00:00",
+ "date": "May 28, 2019 14:30:00",
"subject": "MTA Tool Deploy Meeting",
- "notes": ""
+ "notes": "Description:discuss deployment of tools -- Chef, something else?
discuss updates to sudoers file to allow headless (no login) service account to run specific executable in /sbin/ directory as in operator ALL= /sbin/poweroff
## example from: https://www.garron.me/en/linux/visudo-command-sudoers-file-sudo-default-editor.html"
+ },
+ {
+ "date": "May 28, 2019 15:00:00",
+ "subject": "Update ORB Notes",
+ "notes": "1. Changing the audience to be manager and PO and removing the engineers from the discussion.
2. Please use this link for all things MC-ORB
3. Please fill out the MC-ORB Notes Document to contain your teams updates PRIOR to the meeting so that we can quickly get through the cadence and end the meeting early. Ideally this meeting should never last 30 minutes."
},
{
"date": "May 28, 2019 15:30:00",
diff --git a/broadcast_timer/index.html b/broadcast_timer/index.html
index 499189c..e60b749 100644
--- a/broadcast_timer/index.html
+++ b/broadcast_timer/index.html
@@ -145,8 +145,14 @@ var x = setInterval(function() {
list = "
Event | Time | Time Until | "; - for (i = 0; i < aLen; i++) { + if (aLen > 30) { + var listLength = 30; + } else { + var listLength = aLen; + } + + for (i = 0; i < listLength; i++) { if (i === array_counter) { eventStyle= "events-current"; } else {
---|