Fixed issue with new meeting url not updated in copiable text

This commit is contained in:
jfederico
2016-10-18 16:34:46 -04:00
parent 875f2d2a12
commit 8eab21c2c2
2 changed files with 3 additions and 3 deletions

View File

@ -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) {
},