From f86d210bbb0ad2dbbf49d104e7aa689a03588d04 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Fri, 21 Jul 2017 05:23:54 -0300 Subject: [PATCH] Adding actions --- plugins/talk-plugin-featured-comments/client/actions.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/talk-plugin-featured-comments/client/actions.js diff --git a/plugins/talk-plugin-featured-comments/client/actions.js b/plugins/talk-plugin-featured-comments/client/actions.js new file mode 100644 index 000000000..653b8f565 --- /dev/null +++ b/plugins/talk-plugin-featured-comments/client/actions.js @@ -0,0 +1,9 @@ +import {SHOW_TOOLTIP, HIDE_TOOLTIP} from './constants'; + +export const showTooltip = () => ({ + type: SHOW_TOOLTIP +}); + +export const hideTooltip = () => ({ + type: HIDE_TOOLTIP +});