summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-11 17:58:10 +0300
committerAndrew Dolgov <[email protected]>2018-12-11 17:58:10 +0300
commit721f9ad866014aa684b78906673ec8d973aaf7f1 (patch)
tree208b93d91cf34d5bf3098bf80057b09b9af5b48f /js/tt-rss.js
parent54aeb6f5928a03e5a44da48629ebd8dea6fde941 (diff)
requestIdleCallback: remove hard dependency for now
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index eaf6ae1cd..7635e3a83 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -95,7 +95,7 @@ require(["dojo/_base/kernel",
checkBrowserFeatures: function() {
let errorMsg = "";
- ['requestIdleCallback', 'MutationObserver'].each(function(wf) {
+ ['MutationObserver'].each(function(wf) {
if (! (wf in window)) {
errorMsg = `Browser feature check failed: <code>window.${wf}</code> not found.`;
throw $break;