From: Art Cancro Date: Tue, 28 Mar 2023 04:21:36 +0000 (-0400) Subject: More refinements to .ctdl-middle usage X-Git-Tag: v976~66 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=0181ea451d83eebbcc29b3957d752f567d30c49b;p=citadel.git More refinements to .ctdl-middle usage --- diff --git a/webcit-ng/static/js/defs.js b/webcit-ng/static/js/defs.js index 67d93874c..3fb11d7a9 100644 --- a/webcit-ng/static/js/defs.js +++ b/webcit-ng/static/js/defs.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. diff --git a/webcit-ng/static/js/login.js b/webcit-ng/static/js/login.js index b9e80a0cc..22aa16412 100644 --- a/webcit-ng/static/js/login.js +++ b/webcit-ng/static/js/login.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. diff --git a/webcit-ng/static/js/main.js b/webcit-ng/static/js/main.js index 6b5537d53..96c06b6bb 100644 --- a/webcit-ng/static/js/main.js +++ b/webcit-ng/static/js/main.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. @@ -179,14 +179,8 @@ function load_new_march_list(which_oper) { // Activate the "Loading..." modal function activate_loading_modal() { document.getElementById("ctdl_big_modal").innerHTML = - "
" - + "
" - - + "  " - + _("Loading messages from server, please wait") - - + "
" - + "
"; + "  " + + _("Loading messages from server, please wait"); document.getElementById("ctdl_big_modal").style.display = "block"; } diff --git a/webcit-ng/static/js/roomlist.js b/webcit-ng/static/js/roomlist.js index cb2902361..6d1676c14 100644 --- a/webcit-ng/static/js/roomlist.js +++ b/webcit-ng/static/js/roomlist.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. diff --git a/webcit-ng/static/js/user_profile.js b/webcit-ng/static/js/user_profile.js index 19f19f432..3b218f4e8 100644 --- a/webcit-ng/static/js/user_profile.js +++ b/webcit-ng/static/js/user_profile.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. diff --git a/webcit-ng/static/js/util.js b/webcit-ng/static/js/util.js index 6ea6d71d5..725fc4944 100644 --- a/webcit-ng/static/js/util.js +++ b/webcit-ng/static/js/util.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. diff --git a/webcit-ng/static/js/view_forum.js b/webcit-ng/static/js/view_forum.js index f836824c0..015304d2a 100644 --- a/webcit-ng/static/js/view_forum.js +++ b/webcit-ng/static/js/view_forum.js @@ -1,6 +1,6 @@ // This module handles the view for "forum" (message board) rooms. // -// Copyright (c) 2016-2022 by the citadel.org team +// Copyright (c) 2016-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. diff --git a/webcit-ng/static/js/views.js b/webcit-ng/static/js/views.js index 72af39b64..82e979853 100644 --- a/webcit-ng/static/js/views.js +++ b/webcit-ng/static/js/views.js @@ -25,7 +25,10 @@ function render_room_view() { } clear_sidebar_selection(); - document.getElementById("ctdl-main").innerHTML = _("Loading messages from server, please wait"); + document.getElementById("ctdl-main").innerHTML = + "
" + + _("Loading messages from server, please wait") + + "
"; switch(current_view) {