Skip to content
Snippets Groups Projects
Commit b216c15d authored by Anton Georgiev's avatar Anton Georgiev
Browse files

in activity monitor show meetingName even for breakout rooms

parent 9aadcf88
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,7 @@ function createMeetingTable(meeting) { ...@@ -109,7 +109,7 @@ function createMeetingTable(meeting) {
form += '<input type="submit" value="End"/></FORM>'; form += '<input type="submit" value="End"/></FORM>';
form += '</th>'; form += '</th>';
var tableContent = '<table name="' + meeting.meetingID + '" class="hor-minimalist-b" cellspacing="0" summary="The current participants in a meeting"><caption>' + meeting.meetingID + '<caption><tr><th scope="col" abbr="Participants">Participants</th><th scope="col" abbr="Name">Name</th><th scope="col" abbr="Role">Role</th>'; var tableContent = '<table name="' + meeting.meetingID + '" class="hor-minimalist-b" cellspacing="0" summary="The current participants in a meeting"><caption>' + meeting.meetingName + '<caption><tr><th scope="col" abbr="Participants">Participants</th><th scope="col" abbr="Name">Name</th><th scope="col" abbr="Role">Role</th>';
//uncomment below to add the ability to end meetings in the activity monitor //uncomment below to add the ability to end meetings in the activity monitor
//tableContent += form; //tableContent += form;
...@@ -157,4 +157,5 @@ function createMeetingTable(meeting) { ...@@ -157,4 +157,5 @@ function createMeetingTable(meeting) {
// 2. has no spaces and/or special characters // 2. has no spaces and/or special characters
function encode(string) { function encode(string) {
return hex_md5(string); return hex_md5(string);
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment