JS callback when spinner is hidden?

Kind of a weird issue here, but my community members are complaining that the footer on my forum jumps in and out of view when they click around on the site. I was thinking we could hide the footer whenever the spinner is present (content loading), but having trouble finding a way to trigger the show/hide. Thanks.

4 Likes

Are you adding the footer via the above/below footer plugin outlet? If so, wrap your HTML in {{#if showFooter}}:

<script type="text/x-handlebars" data-template-name="/connectors/below-footer/custom-footer">
  {{#if showFooter}}
    your footer content here
  {{/if}}
</script>
7 Likes