aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/actions/MenuActions.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/js/actions/MenuActions.js')
-rw-r--r--src/web/js/actions/MenuActions.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/js/actions/MenuActions.js b/src/web/js/actions/MenuActions.js
index 558bd857..9502eb6d 100644
--- a/src/web/js/actions/MenuActions.js
+++ b/src/web/js/actions/MenuActions.js
@@ -14,19 +14,19 @@ var MenuActions = {
});
});
},
- setFilterMenuAll: function() {
+ setFilterAll: function() {
JarrDispatcher.dispatch({
component: 'menu',
type: MenuActionTypes.MENU_FILTER_ALL,
});
},
- setFilterMenuUnread: function() {
+ setFilterUnread: function() {
JarrDispatcher.dispatch({
component: 'menu',
type: MenuActionTypes.MENU_FILTER_UNREAD,
});
},
- setFilterMenuError: function() {
+ setFilterError: function() {
JarrDispatcher.dispatch({
type: MenuActionTypes.MENU_FILTER_ERROR,
});
bgstack15