dynamic room content

This commit is contained in:
Zachary Chai
2016-11-09 15:29:36 -05:00
parent 7068d0b023
commit d22cc3e6d0
9 changed files with 43 additions and 37 deletions

View File

@ -91,3 +91,12 @@ var showAlert = function(html, timeout_delay) {
}, timeout_delay);
}
}
var displayMeetingURL = function() {
meetingURL = $('.meeting-url');
var link = window.location.protocol +
'//' +
window.location.hostname +
meetingURL.data('path');
meetingURL.val(link);
}