Fix drawer icon not changing on WI
This commit is contained in:
parent
81f2bbadba
commit
5d60897cfa
|
@ -10727,10 +10727,12 @@ jQuery(async function () {
|
||||||
if ($(e.target).hasClass('text_pole')) {
|
if ($(e.target).hasClass('text_pole')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var icon = $(this).find('.inline-drawer-icon');
|
const drawer = $(this).closest('.inline-drawer');
|
||||||
|
const icon = drawer.find('.inline-drawer-icon');
|
||||||
|
const drawerContent = drawer.find('.inline-drawer-content');
|
||||||
icon.toggleClass('down up');
|
icon.toggleClass('down up');
|
||||||
icon.toggleClass('fa-circle-chevron-down fa-circle-chevron-up');
|
icon.toggleClass('fa-circle-chevron-down fa-circle-chevron-up');
|
||||||
$(this).closest('.inline-drawer').find('.inline-drawer-content').stop().slideToggle({
|
drawerContent.stop().slideToggle({
|
||||||
complete: () => {
|
complete: () => {
|
||||||
$(this).css('height', '');
|
$(this).css('height', '');
|
||||||
},
|
},
|
||||||
|
@ -10738,7 +10740,7 @@ jQuery(async function () {
|
||||||
|
|
||||||
// Set the height of "autoSetHeight" textareas within the inline-drawer to their scroll height
|
// Set the height of "autoSetHeight" textareas within the inline-drawer to their scroll height
|
||||||
if (!CSS.supports('field-sizing', 'content')) {
|
if (!CSS.supports('field-sizing', 'content')) {
|
||||||
$(this).closest('.inline-drawer').find('.inline-drawer-content textarea.autoSetHeight').each(async function () {
|
drawerContent.find('textarea.autoSetHeight').each(async function () {
|
||||||
await resetScrollHeight($(this));
|
await resetScrollHeight($(this));
|
||||||
return;
|
return;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue