aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/constants/JarrConstants.js
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 11:27:31 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 11:27:31 +0100
commit62b3afeeedfe054345f86093e2d243e956c1e3c9 (patch)
treebbd58f5c8c07f5d87b1c1cca73fa1d5af6178f48 /src/web/js/constants/JarrConstants.js
parentUpdated Python dependencies. (diff)
downloadnewspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.gz
newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.bz2
newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.zip
The project is now using Poetry.
Diffstat (limited to 'src/web/js/constants/JarrConstants.js')
-rw-r--r--src/web/js/constants/JarrConstants.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/web/js/constants/JarrConstants.js b/src/web/js/constants/JarrConstants.js
deleted file mode 100644
index 78e8bf04..00000000
--- a/src/web/js/constants/JarrConstants.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var keyMirror = require('keymirror');
-
-module.exports = keyMirror({
- TOGGLE_MENU_FOLD: null,
- RELOAD_MENU: null,
- PARENT_FILTER: null, // set a feed or a category as filter in menu
- MENU_FILTER: null, // change displayed feed in the menu
- CHANGE_ATTR: null, // edit an attr on an article (like / read)
- RELOAD_MIDDLE_PANEL: null,
- MIDDLE_PANEL_FILTER: null, // set a filter (read/like/all)
- LOAD_ARTICLE: null, // load a single article in right panel
- MARK_ALL_AS_READ: null,
-});
bgstack15