forked from External/greenlight
Fixed issue with new meeting url not updated in copiable text
This commit is contained in:
parent
875f2d2a12
commit
8eab21c2c2
|
@ -23,8 +23,8 @@
|
|||
type : 'GET',
|
||||
success : function(data) {
|
||||
$('#meeting_url').html(data.response.meeting_url);
|
||||
$('#text_meeting_url a').href(data.response.meeting_url);
|
||||
$('#text_meeting_url span').html(data.response.meeting_url);
|
||||
$('#text_meeting_url').attr("href", data.response.meeting_url);
|
||||
$('#text_meeting_url').text(data.response.meeting_url);
|
||||
},
|
||||
error : function(xhr, status, error) {
|
||||
},
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<figure class=highlight><pre><figcaption class="text" data-lang="text">
|
||||
<p>Hi Everyone</p>
|
||||
<p>The meeting will be at this URL</p>
|
||||
<p><a id="text_meeting_url" href="<%= @meeting_url %>"><span id="text_meeting_url"><%= @meeting_url %></a></p>
|
||||
<p><a id="text_meeting_url" href="<%= @meeting_url %>"><%= @meeting_url %></p>
|
||||
<p>Please join!</p>
|
||||
</figcaption></pre></figure>
|
||||
|
||||
|
|
Loading…
Reference in New Issue