recording management

This commit is contained in:
Josh
2018-06-12 14:36:35 -04:00
parent 46bb456063
commit 39b687a58f
6 changed files with 53 additions and 17 deletions

View File

@ -28,7 +28,7 @@
</div>
<div class="col-lg-3 col-sm-12 bottom-div mt-5">
<% if @is_running %>
<div class="btn btn-success btn-block px-7 start-button float-right">In Progress</div>
<%= button_to "Join", room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
<% else %>
<%= button_to "Start", start_room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
<% end %>
@ -55,6 +55,7 @@
var invite_url;
var copy = $('#copy');
// Handle copy button.
copy.on('click', function(){
var inviteURL = $('#invite-url');
inviteURL.select();
@ -70,4 +71,15 @@ copy.on('click', function(){
}, 2000)
}
});
// Handle recording emails.
$('.email-link').each(function(){
$(this).click(function(){
var subject = $(".username").text() + " has invited you to view a recording.";
var body = "To view the recording, follow the link below:\n\n" + $(this).attr("data-pres-link");
var footer = "\n\nThis e-mail is auto-generated by BigBlueButton.\nBigBlueButton is an open source web conferencing system. For more information on BigBlueButton, see https://bigbluebutton.org/."
var win = window.open("mailto:?subject=" + encodeURIComponent(subject) + "&body=" + encodeURIComponent(body) + encodeURIComponent(footer), '_blank');
win.focus();
});
});
</script>