From 15c4ed6bebdeb277c24bd92dab5bba900fc90de4 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 25 Jan 2016 13:14:06 +0100 Subject: redoing constant, handling read / unread in menu, removing bad optim for loading articles --- src/web/js/constants/JarrConstants.js | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'src/web/js/constants') diff --git a/src/web/js/constants/JarrConstants.js b/src/web/js/constants/JarrConstants.js index c7b419e4..ca5eacc7 100644 --- a/src/web/js/constants/JarrConstants.js +++ b/src/web/js/constants/JarrConstants.js @@ -11,19 +11,12 @@ var keyMirror = require('keymirror'); -module.exports = { - MenuActionTypes: keyMirror({ +module.exports = keyMirror({ RELOAD_MENU: null, PARENT_FILTER: null, MENU_FILTER: null, - }), - MiddlePanelActionTypes: keyMirror({ - PARENT_FILTER: null, + CHANGE_ATTR: null, RELOAD_MIDDLE_PANEL: null, MIDDLE_PANEL_FILTER: null, - CHANGE_ATTR: null, - }), - RightPanelActionTypes: keyMirror({ LOAD_RIGHT_PANEL: null, - }), -}; +}); -- cgit