* VRFS-3711 - push video button brings to front
This commit is contained in:
parent
efb4214e9a
commit
38a64a3dde
|
|
@ -140,6 +140,11 @@ BackendToFrontendFPS = {
|
|||
@state.videoShared = @videoShared
|
||||
this.trigger(@state)
|
||||
|
||||
onBringVideoToFront: ->
|
||||
if @videoShared
|
||||
@logger.debug("BringVideoToFront")
|
||||
context.jamClient.BringVideoWindowToFront();
|
||||
|
||||
onTestVideo: () ->
|
||||
|
||||
return unless context.jamClient.testVideoRender?
|
||||
|
|
@ -150,7 +155,7 @@ BackendToFrontendFPS = {
|
|||
|
||||
onToggleVideo: () ->
|
||||
if @videoShared
|
||||
@onStopVideo()
|
||||
@onBringVideoToFront()
|
||||
else
|
||||
@onStartVideo()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue