allow meeting name separately when joining from room

This commit is contained in:
Zachary Chai
2017-01-26 18:59:25 -05:00
parent 066755c56c
commit 5180a99c32
4 changed files with 49 additions and 11 deletions

View File

@ -191,6 +191,15 @@
var initRooms = function() {
displayRoomURL();
$('.center-panel-wrapper').on('keyup', '.meeting-name', function (event, msg) {
var newName = $(this).val();
// Meeting.getInstance().setMeetingId(newId);
Meeting.getInstance().setMeetingName(newName);
// $(".page-wrapper.meetings").data('id', newId);
// $('.meeting-url').val(Meeting.getInstance().getURL());
// $('.join-meeting-title').html(I18n.join_title.replace(/%{id}/, newId));
});
Recordings.getInstance().refresh();
Recordings.getInstance().setupActionHandlers();
};