From 807ff074540575e6ef8f99ad32b098a816091171 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 2 Dec 2018 17:18:59 +0300 Subject: split main objects to dojo modules --- js/tt-rss.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'js/tt-rss.js') diff --git a/js/tt-rss.js b/js/tt-rss.js index d0a97a1c0..cbae4db4c 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -1,8 +1,12 @@ -/* global dijit,__,fox */ +/* global dijit,__ */ let Utils; let CommonDialogs; let Filters; +let Feeds; +let Headlines; +let Article; +let ArticleCache; const App = { global_unread: -1, @@ -51,6 +55,10 @@ const App = { "fox/Utils", "fox/CommonDialogs", "fox/CommonFilters", + "fox/Feeds", + "fox/Headlines", + "fox/Article", + "fox/ArticleCache", "fox/FeedStoreModel", "fox/FeedTree"], function (dojo, ready, parser) { @@ -60,6 +68,10 @@ const App = { Utils = fox.Utils(); CommonDialogs = fox.CommonDialogs(); Filters = fox.CommonFilters(); + Feeds = fox.Feeds(); + Headlines = fox.Headlines(); + Article = fox.Article(); + ArticleCache = fox.ArticleCache(); parser.parse(); -- cgit v1.2.3