From b216c15db95b9add9c27e41abb63e95488da0bbe Mon Sep 17 00:00:00 2001
From: Anton Georgiev <anto.georgiev@gmail.com>
Date: Thu, 9 Feb 2017 16:11:56 -0500
Subject: [PATCH] in activity monitor show meetingName even for breakout rooms

---
 bbb-api-demo/src/main/webapp/js/demo4.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bbb-api-demo/src/main/webapp/js/demo4.js b/bbb-api-demo/src/main/webapp/js/demo4.js
index b674123a85..ce71968005 100755
--- a/bbb-api-demo/src/main/webapp/js/demo4.js
+++ b/bbb-api-demo/src/main/webapp/js/demo4.js
@@ -109,7 +109,7 @@ function createMeetingTable(meeting) {
 	form += '<input type="submit" value="End"/></FORM>';
 	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
 	//tableContent += form;
@@ -157,4 +157,5 @@ function createMeetingTable(meeting) {
 // 2. has no spaces and/or special characters
 function encode(string) {
 	return hex_md5(string);
-}
\ No newline at end of file
+}
+
-- 
GitLab