17 lines
452 B
Plaintext
17 lines
452 B
Plaintext
<% if @live_meeting_url.present? %>
|
|
<%= javascript_include_tag "https://unpkg.com/@daily-co/daily-js" %>
|
|
|
|
<%= javascript_tag nonce: true do %>
|
|
callFrame = window.DailyIframe.createFrame({
|
|
showLeaveButton: true,
|
|
iframeStyle: {
|
|
position: 'fixed',
|
|
width: '100%',
|
|
height: '90%'
|
|
}
|
|
});
|
|
callFrame.join({ url: '<%= @live_meeting_url %>' });
|
|
<% end %>
|
|
<% else %>
|
|
<p><%= t '.meeting_not_ready_message' %></p>
|
|
<% end %> |