about summary refs log tree commit diff
path: root/app/assets/javascripts/components/actions/modal.jsx
blob: 89dbc79471b92a9a3530048f19b2113dbf2cf38d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const MEDIA_OPEN  = 'MEDIA_OPEN';
export const MODAL_CLOSE = 'MODAL_CLOSE';

export function openMedia(url) {
  return {
    type: MEDIA_OPEN,
    url: url
  };
};

export function closeModal() {
  return {
    type: MODAL_CLOSE
  };
};