| 10727 | if ($(e.target).hasClass('text_pole')) { | 10727 | if ($(e.target).hasClass('text_pole')) { |
| 10728 | return; | 10728 | return; |
| 10729 | } | 10729 | } |
| 10730 | var icon = $(this).find('.inline-drawer-icon'); | 10730 | const drawer = $(this).closest('.inline-drawer'); |
| | 10731 | const icon = drawer.find('.inline-drawer-icon'); |
| | 10732 | const drawerContent = drawer.find('.inline-drawer-content'); |
| 10731 | icon.toggleClass('down up'); | 10733 | icon.toggleClass('down up'); |
| 10732 | icon.toggleClass('fa-circle-chevron-down fa-circle-chevron-up'); | 10734 | icon.toggleClass('fa-circle-chevron-down fa-circle-chevron-up'); |
| 10733 | $(this).closest('.inline-drawer').find('.inline-drawer-content').stop().slideToggle({ | 10735 | drawerContent.stop().slideToggle({ |
| 10734 | complete: () => { | 10736 | complete: () => { |
| 10735 | $(this).css('height', ''); | 10737 | $(this).css('height', ''); |
| 10736 | }, | 10738 | }, |