From 9bb2bb7870bf1f8715193c4d90d636e08faa7afd Mon Sep 17 00:00:00 2001 From: Daniel Calviño Sánchez Date: Fri, 24 Nov 2017 14:07:39 +0100 Subject: Show delete working icon at the same position as the delete icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a comment was being deleted the submit working icon was shown. Now the submit working icon is kept hidden in that case and a specific delete working icon, which is shown at the same position as the delete icon, is used instead. Signed-off-by: Daniel Calviño Sánchez --- apps/comments/css/comments.css | 3 ++- apps/comments/js/commentstabview.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 428dc778a65..90b3678b219 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -177,7 +177,8 @@ opacity: 1; } -#commentsTabView .comment .action.delete { +#commentsTabView .comment .action.delete, +#commentsTabView .comment .deleteLoading { position: absolute; right: 0; } diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js index 0d2d0b0b81f..d64b70494fd 100644 --- a/apps/comments/js/commentstabview.js +++ b/apps/comments/js/commentstabview.js @@ -27,6 +27,7 @@ '
{{actorDisplayName}}
' + '{{#if isEditMode}}' + ' ' + + ' '+ '{{/if}}' + ' ' + '
' + @@ -543,7 +544,7 @@ ev.preventDefault(); var $comment = $(ev.target).closest('.comment'); var commentId = $comment.data('id'); - var $loading = $comment.find('.submitLoading'); + var $loading = $comment.find('.deleteLoading'); var $commentField = $comment.find('.message'); var $submit = $comment.find('.submit'); var $cancel = $comment.find('.cancel'); -- cgit v1.2.3