Add opening images in a modal window
This commit is contained in:
parent
f8f40f15da
commit
de50eff6ac
12 changed files with 146 additions and 8 deletions
15
app/assets/javascripts/components/actions/modal.jsx
Normal file
15
app/assets/javascripts/components/actions/modal.jsx
Normal file
|
@ -0,0 +1,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
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue