summaryrefslogtreecommitdiffstats
path: root/js/app/Config.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/app/Config.js')
-rw-r--r--js/app/Config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/app/Config.js b/js/app/Config.js
index bd38f897b..d347415b9 100644
--- a/js/app/Config.js
+++ b/js/app/Config.js
@@ -10,7 +10,7 @@
app.config(function ($routeProvider, $provide, $httpProvider) {
'use strict';
- let feedType = {
+ const feedType = {
FEED: 0,
FOLDER: 1,
STARRED: 2,
@@ -39,7 +39,7 @@ app.config(function ($routeProvider, $provide, $httpProvider) {
$httpProvider.interceptors.push('CSRFInterceptor');
// routing
- let getResolve = (type) => {
+ const getResolve = (type) => {
return {
// request to items also returns feeds
data: [
@@ -50,7 +50,7 @@ app.config(function ($routeProvider, $provide, $httpProvider) {
'ITEM_BATCH_SIZE',
($http, $route, $q, BASE_URL, ITEM_BATCH_SIZE) => {
- let parameters = {
+ const parameters = {
type: type,
limit: ITEM_BATCH_SIZE
};