aw_support
3/13/2020 - 8:58 PM

IE bug - Release 1.29.0

/* put this in CSS */
/* fix disappearing menu on IE on desktop */
@media screen and (min-width: 64em){
  .ie .aw-header--sticky .navbar-menu-hamburger {
    display: none;
  }
  .ie .aw-header--sticky .navbar-menu-block {
    display: block;
  }
}
// put this in JS (might already be in there)
jQuery( document ).ready(function() {
	if (/MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent)) {
		// This is internet explorer 9 or 11
		jQuery( "body" ).addClass( "ie" );
	}
});