summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 71bb2337a..d0a97a1c0 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -1,4 +1,8 @@
-/* global dijit, __ */
+/* global dijit,__,fox */
+
+let Utils;
+let CommonDialogs;
+let Filters;
const App = {
global_unread: -1,
@@ -44,12 +48,19 @@ const App = {
"dijit/tree/dndSource",
"dijit/tree/ForestStoreModel",
"dojo/data/ItemFileWriteStore",
+ "fox/Utils",
+ "fox/CommonDialogs",
+ "fox/CommonFilters",
"fox/FeedStoreModel",
"fox/FeedTree"], function (dojo, ready, parser) {
ready(function () {
try {
+ Utils = fox.Utils();
+ CommonDialogs = fox.CommonDialogs();
+ Filters = fox.CommonFilters();
+
parser.parse();
if (!App.genericSanityCheck())