aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/constants/JarrConstants.js
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2016-01-25 13:14:06 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-26 23:47:57 +0100
commit15c4ed6bebdeb277c24bd92dab5bba900fc90de4 (patch)
tree0171f769ecda89185885ad0a792fdb570913962a /src/web/js/constants/JarrConstants.js
parentbootstraping right panel (diff)
downloadnewspipe-15c4ed6bebdeb277c24bd92dab5bba900fc90de4.tar.gz
newspipe-15c4ed6bebdeb277c24bd92dab5bba900fc90de4.tar.bz2
newspipe-15c4ed6bebdeb277c24bd92dab5bba900fc90de4.zip
redoing constant, handling read / unread in menu, removing bad optim for loading articles
Diffstat (limited to 'src/web/js/constants/JarrConstants.js')
-rw-r--r--src/web/js/constants/JarrConstants.js13
1 files changed, 3 insertions, 10 deletions
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,
- }),
-};
+});
bgstack15