URI encode meeting name and only show invite/join when a name is entered

This commit is contained in:
Zachary Chai
2017-01-26 09:34:05 -05:00
parent e3e154b99c
commit 540ab7d369
3 changed files with 8 additions and 3 deletions

View File

@ -36,7 +36,7 @@ class @Meeting
_meetingInstance = null
@buildMeetingURL: (id, type) ->
return @buildFullDomainURL() + '/' + type + '/' + id
return @buildFullDomainURL() + '/' + type + '/' + encodeURIComponent(id)
@buildFullDomainURL: ->
url = location.protocol + '//' + location.hostname