Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Last active January 13, 2019 09:21
Show Gist options
  • Save httpstersk/de64177e890f4a708cf63b2d1af29e61 to your computer and use it in GitHub Desktop.
Save httpstersk/de64177e890f4a708cf63b2d1af29e61 to your computer and use it in GitHub Desktop.
➐ Toggle full–screen mode
const { dispatch, select } = wp.data;
const { isFeatureActive } = select( 'core/edit-post' )
const { toggleFeature } = dispatch( 'core/edit-post' );
if ( isFeatureActive( 'fullscreenMode' ) ) {
toggleFeature( 'fullscreenMode' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment