diff options
author | Mario <mario@mariovavti.com> | 2022-01-13 13:07:59 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-13 13:07:59 +0000 |
commit | f4bc6ee61556a1693b2863829ec9a01c42f13f67 (patch) | |
tree | 2855af85d199a94c06f5bf4a127121729b6e7c5c /view/tpl/contact_edit_modal.tpl | |
parent | f8b8d8c5400983125c94fda47b99933a37f8961c (diff) | |
download | volse-hubzilla-f4bc6ee61556a1693b2863829ec9a01c42f13f67.tar.gz volse-hubzilla-f4bc6ee61556a1693b2863829ec9a01c42f13f67.tar.bz2 volse-hubzilla-f4bc6ee61556a1693b2863829ec9a01c42f13f67.zip |
ux improvements
Diffstat (limited to 'view/tpl/contact_edit_modal.tpl')
-rw-r--r-- | view/tpl/contact_edit_modal.tpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/view/tpl/contact_edit_modal.tpl b/view/tpl/contact_edit_modal.tpl index be290c403..a046456d9 100644 --- a/view/tpl/contact_edit_modal.tpl +++ b/view/tpl/contact_edit_modal.tpl @@ -104,6 +104,8 @@ function init_contact_edit(poi) { if (!poi) return + $('#edit-rotator-' + poi).addClass('d-inline-block'); + $('#edit-icon-' + poi).hide(); $.get('contactedit/' + poi, function(data) { if (!data.success) { $.jGrowl(data.message, {sticky: false, theme: 'notice', life: 10000}); @@ -115,10 +117,10 @@ } function activate(data) { - $('#edit-modal-title').css('filter', 'blur(0px)'); - $('#edit-modal-body').css('filter', 'blur(0px)'); $('#contact-save').removeClass('disabled'); $('#contact-tools').removeClass('disabled'); + $('#edit-rotator-' + poi).removeClass('d-inline-block'); + $('#edit-icon-' + poi).show(); if (data.title) { $('#edit-modal-title').html(data.title); |