| 3396 | $(document).on('click touchend', function (e) { | 3396 | $(document).on('click touchend', function (e) { |
| 3397 | const target = $(e.target); | 3397 | const target = $(e.target); |
| 3398 | if (target.is(dropdown) || target.closest(dropdown).length) return; | 3398 | if (target.is(dropdown) || target.closest(dropdown).length) return; |
| 3399 | if (target.is(button) && !dropdown.is(':visible') && $('#send_but').is(':visible')) { | 3399 | if ((target.is(button) || target.closest(button).length) && !dropdown.is(':visible') && $('#send_but').is(':visible')) { |
| 3400 | e.preventDefault(); | 3400 | e.preventDefault(); |
| 3401 | | 3401 | |
| 3402 | dropdown.fadeIn(animation_duration); | 3402 | dropdown.fadeIn(animation_duration); |