diff --git a/public/js-enabled.css b/public/js-enabled.css deleted file mode 100644 index 269d7d42ab..0000000000 --- a/public/js-enabled.css +++ /dev/null @@ -1,3 +0,0 @@ -/* - The following stylesheet is only included on pages that can execute javascript -*/ diff --git a/public/src/app.js b/public/src/app.js index fb7f310a94..c06a8c9929 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -38,8 +38,6 @@ app.cacheBuster = null; }); app.load = function () { - app.loadProgressiveStylesheet(); - overrides.overrideTimeago(); var url = ajaxify.start(window.location.pathname.slice(1) + window.location.search + window.location.hash); @@ -751,14 +749,6 @@ app.cacheBuster = null; }); }; - app.loadProgressiveStylesheet = function () { - var linkEl = document.createElement('link'); - linkEl.rel = 'stylesheet'; - linkEl.href = config.relative_path + '/assets/js-enabled.css?' + app.cacheBuster; - - document.head.appendChild(linkEl); - }; - app.showCookieWarning = function () { require(['translator', 'storage'], function (translator, storage) { if (!config.cookies.enabled || !navigator.cookieEnabled) {