forked from External/greenlight
fix bad concat usage
This commit is contained in:
parent
c9e339e5e1
commit
d11c998fa9
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue