aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/contact_edit_modal.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl/contact_edit_modal.tpl')
-rw-r--r--view/tpl/contact_edit_modal.tpl6
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);