# Briefing

todo

# Disable and Enable Transitions

To disable or enable transitions directly from the briefing template you can use dedicated methods enableTransitions and disableTransitions.

briefing.disableTransitions()

briefing.enableTransitions()

If you don't have access to the briefing object for example from your Content App, you can use postMessage to disable or enable transitions.

window.parent.postMessage({
  command: 'scp.gui.transitions',
  enabled: false
}, '*')

window.parent.postMessage({
    command: 'scp.gui.transitions',
    enabled: true
  }, '*')