diff --git a/customize.dist/pre-loading.js b/customize.dist/pre-loading.js index 0f64ed6ad..09a508476 100644 --- a/customize.dist/pre-loading.js +++ b/customize.dist/pre-loading.js @@ -1,6 +1,4 @@ -define([ - '/customize/messages.js' -], function (Messages) { +(function () { var logoPath = '/customize/CryptPad_logo.svg'; if (location.pathname === '/' || location.pathname === '/index.html') { logoPath = '/customize/CryptPad_logo_hero.svg'; @@ -8,10 +6,9 @@ if (location.pathname === '/' || location.pathname === '/index.html') { var elem = document.createElement('div'); elem.setAttribute('id', 'placeholder'); -Messages.label_logo = "CryptPad logo"; // XXX Logo elem.innerHTML = [ '
', - '', + '', '
', '
', '

Loading...

', @@ -58,4 +55,4 @@ document.addEventListener('DOMContentLoaded', function() { } catch (e) {} }, 3000); }); -}); +}());