From 9f6583fbb13c18243513ea4bb5c4183b0b7addce Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 19 Sep 2023 16:43:19 +0200 Subject: [PATCH] Revert "added temporary label for logo" This reverts commit b5c7bc3185ec614f10017e3463c12b9e7648ddca. --- customize.dist/pre-loading.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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); }); -}); +}());