fix gravatars not showing
fix web config not saving Uri fix issue with token login
This commit is contained in:
@ -152,6 +152,7 @@
|
||||
#profile_avatar {
|
||||
min-width: 8rem;
|
||||
min-height: 8rem;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.profile-shortcode {
|
||||
@ -181,7 +182,7 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.profile-action:hover {
|
||||
.profile-action.oi:hover {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
|
@ -13,16 +13,11 @@
|
||||
|
||||
$('.configuration-add-new').click(function (e) {
|
||||
e.preventDefault();
|
||||
//let totalItems = $(this).siblings().length;
|
||||
//let inputHtml = $(this).siblings().last().get(0).outerHTML;
|
||||
//inputHtml = inputHtml.replace('_' + totalItems - 1 + '_', '_' + totalItems + '_');
|
||||
//inputHtml = inputHtml.replace('[' + totalItems - 1 + ']', '[' + totalItems + ']');
|
||||
//$(this).parent().prepend(inputHtml);
|
||||
|
||||
|
||||
let parentElement = $(this).parent();
|
||||
|
||||
$.get($(this).attr('href') + '&itemCount=' + $(this).siblings().length, function (response) {
|
||||
parentElement.prepend(response);
|
||||
$(response).insertBefore(parentElement.children().last());
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user