fix bad concat usage

This commit is contained in:
Zachary Chai 2016-11-23 11:38:05 -05:00
parent c9e339e5e1
commit d11c998fa9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class @Meeting
@buildFullDomainURL: -> @buildFullDomainURL: ->
url = location.protocol + '//' + location.hostname url = location.protocol + '//' + location.hostname
if location.port if location.port
url.concat ':' + location.port url += ':' + location.port
return url return url
# Sends the end meeting request # Sends the end meeting request