Additional logs
This commit is contained in:
parent
0f0995a567
commit
2de825f064
|
|
@ -120,6 +120,7 @@ mixins.push(Reflux.listenTo(UserStore, 'onUserChanged'))
|
|||
}
|
||||
|
||||
close: () ->
|
||||
SessionActions.log({msg: "PopupMediaControls close event trigger"})
|
||||
window.close()
|
||||
|
||||
help: (e) ->
|
||||
|
|
@ -474,8 +475,9 @@ mixins.push(Reflux.listenTo(UserStore, 'onUserChanged'))
|
|||
</div>`
|
||||
|
||||
|
||||
windowUnloaded: () ->
|
||||
windowUnloaded: (event) ->
|
||||
logger.debug('PopupMediaControls: window uploaded')
|
||||
SessionActions.log({msg: 'PopupMediaControls: window uploaded', event: event})
|
||||
@unloaded = true
|
||||
window.unloaded = true
|
||||
|
||||
|
|
|
|||
|
|
@ -23,4 +23,5 @@ context = window
|
|||
mixdownActive: {}
|
||||
sessionJoinedByOther: {}
|
||||
navToSession: {}
|
||||
log: {}
|
||||
})
|
||||
|
|
@ -231,6 +231,8 @@ ConfigureTracksActions = @ConfigureTracksActions
|
|||
@sessionPageEnterDeferred.resolve(inputTracks);
|
||||
@sessionPageEnterDeferred = null
|
||||
|
||||
onLog: (detail) ->
|
||||
logger.debug("SessionStore: OnLog", detail)
|
||||
|
||||
# codeInitiated means the user did not initiate this
|
||||
onCloseMedia: (codeInitiated) ->
|
||||
|
|
|
|||
Loading…
Reference in New Issue