function endCurrentMeetingSession()

in customer/src/customer/index.js [255:264]


function endCurrentMeetingSession() {
  if (meetingSession) {
    meetingSession.audioVideo.stop();
    meetingSession = null;
    meeting = null;
    customerAttendee = null;
  }
  domHide('meeting-info');
  domHide('meeting-view');
}