From c3f0d5898a2adb03ab317f2f1a8e6a09cffda6a2 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Thu, 2 Feb 2023 19:03:01 +0000 Subject: [PATCH] index: Remove `Loading...` text from the app loading overlay. The new loading spinner animation conveys the message well that the app is loading and this text is no longer required. --- templates/zerver/app/index.html | 4 ---- zerver/tests/test_home.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/templates/zerver/app/index.html b/templates/zerver/app/index.html index 7d0caa6a82..22f35e52d7 100644 --- a/templates/zerver/app/index.html +++ b/templates/zerver/app/index.html @@ -79,9 +79,6 @@ border-top-color: hsl(0,0%,52%); animation: zspinner 1s linear infinite; } - .app-loading-text { - font-weight: normal; - } {% endblock %} @@ -95,7 +92,6 @@
-

{{ _('Loading...') }}

{% trans %}If this message does not go away, try reloading the page.{% endtrans %}

diff --git a/zerver/tests/test_home.py b/zerver/tests/test_home.py index d3f10f6d04..ea3d5347f2 100644 --- a/zerver/tests/test_home.py +++ b/zerver/tests/test_home.py @@ -227,7 +227,7 @@ class HomeTest(ZulipTestCase): # Keep this list sorted!!! html_bits = [ "message_feed_errors_container", - "Loading...", + "app-loading-logo", # Verify that the app styles get included "app-stubentry.js", "data-params",