This commit is contained in:
Kameron Kenny 2019-05-28 14:29:57 -04:00
parent 8447b34c49
commit a1fa4bfbe4
2 changed files with 14 additions and 3 deletions

View File

@ -40,9 +40,14 @@ var events = [
"notes": "" "notes": ""
}, },
{ {
"date": "May 28, 2019 14:00:00", "date": "May 28, 2019 14:30:00",
"subject": "MTA Tool Deploy Meeting", "subject": "MTA Tool Deploy Meeting",
"notes": "" "notes": "Description:discuss deployment of tools -- Chef, something else?<br />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 <br /> ## 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. <br /><br />2. Please use this link for all things MC-ORB<br /><br />3. Please fill out the <a href=https://docs.google.com/document/d/1S3LeKT9wqSM1EUL4U6h-yJkjEj3iy8xHFAgERgTnC1A/edit#>MC-ORB Notes Document</a> 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", "date": "May 28, 2019 15:30:00",

View File

@ -145,8 +145,14 @@ var x = setInterval(function() {
list = "<table class=events><th class=events>Event</th><th class=events>Time</th><th class=events>Time Until</th>"; list = "<table class=events><th class=events>Event</th><th class=events>Time</th><th class=events>Time Until</th>";
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) { if (i === array_counter) {
eventStyle= "events-current"; eventStyle= "events-current";
} else { } else {