Skip to content

Commit

Permalink
Move full screen action to legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Caldwell committed Mar 5, 2020
1 parent 6f0953c commit 0db88ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions x-pack/legacy/plugins/maps/public/actions/ui_actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ export const HIDE_TOC_DETAILS = 'HIDE_TOC_DETAILS';
export const UPDATE_INDEXING_STAGE = 'UPDATE_INDEXING_STAGE';
// End temporary redundancy

export function exitFullScreen() {
return {
type: SET_FULL_SCREEN,
isFullScreen: false,
};
}

export function updateFlyout(display) {
return {
type: UPDATE_FLYOUT,
Expand Down
7 changes: 0 additions & 7 deletions x-pack/plugins/maps/public/actions/ui_actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,3 @@ export const SHOW_TOC_DETAILS = 'SHOW_TOC_DETAILS';
export const HIDE_TOC_DETAILS = 'HIDE_TOC_DETAILS';
export const UPDATE_INDEXING_STAGE = 'UPDATE_INDEXING_STAGE';
// End temporary redundancy

export function exitFullScreen() {
return {
type: SET_FULL_SCREEN,
isFullScreen: false,
};
}

0 comments on commit 0db88ee

Please sign in to comment.