aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/contact_edit_modal.tpl
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-01-19 11:24:42 +0000
committerMario <mario@mariovavti.com>2022-01-19 11:24:42 +0000
commitd98d56c3b5481e12dc53136c06b6c9c069d40d98 (patch)
treea7dc56dbd8f82b194c3a15627596b42cd00e4670 /view/tpl/contact_edit_modal.tpl
parent5f21edcc53182cc04176657318a7b2933e7a71aa (diff)
downloadvolse-hubzilla-d98d56c3b5481e12dc53136c06b6c9c069d40d98.tar.gz
volse-hubzilla-d98d56c3b5481e12dc53136c06b6c9c069d40d98.tar.bz2
volse-hubzilla-d98d56c3b5481e12dc53136c06b6c9c069d40d98.zip
provide a spinner for edit connection action in threads
Diffstat (limited to 'view/tpl/contact_edit_modal.tpl')
-rw-r--r--view/tpl/contact_edit_modal.tpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/view/tpl/contact_edit_modal.tpl b/view/tpl/contact_edit_modal.tpl
index a046456d9..9e958c3a9 100644
--- a/view/tpl/contact_edit_modal.tpl
+++ b/view/tpl/contact_edit_modal.tpl
@@ -104,8 +104,8 @@
function init_contact_edit(poi) {
if (!poi)
return
- $('#edit-rotator-' + poi).addClass('d-inline-block');
- $('#edit-icon-' + poi).hide();
+ $('#contact-edit-rotator-' + poi).addClass('d-inline-block');
+ $('#contact-edit-icon-' + poi).hide();
$.get('contactedit/' + poi, function(data) {
if (!data.success) {
$.jGrowl(data.message, {sticky: false, theme: 'notice', life: 10000});
@@ -119,8 +119,8 @@
function activate(data) {
$('#contact-save').removeClass('disabled');
$('#contact-tools').removeClass('disabled');
- $('#edit-rotator-' + poi).removeClass('d-inline-block');
- $('#edit-icon-' + poi).show();
+ $('#contact-edit-rotator-' + poi).removeClass('d-inline-block');
+ $('#contact-edit-icon-' + poi).show();
if (data.title) {
$('#edit-modal-title').html(data.title);