Website: Update signup modal behavior on smaller screens. (#36810)

Closes: https://github.com/fleetdm/fleet/issues/36466

Changes:
- Updated the signup modal component to close the mobile navigation menu
when the modal is closed.
This commit is contained in:
Eric 2025-12-05 17:53:39 -06:00 committed by GitHub
parent 9b46e4a973
commit 4531eb1392
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -185,7 +185,8 @@ parasails.registerComponent('signupModal', {
// (Note: This isn't just for convenience-- it's crucial that
// the parent logic can use this event to update its scope.)
$(this.$el).on('hide.bs.modal', ()=>{
// Close the mobile navigation menu if it is open.
$('#navbarToggleExternalContent').collapse('hide');
this._bsModalIsAnimatingOut = true;
this.$emit('close');