@hilemangroup/bp-frontend
Version:
Common shared frontend utilities for boilerplate projects
19 lines (18 loc) • 528 B
JavaScript
+(function ($) {
// Remove HubSpot's invalid ARIA attributes.
$.fn.hsAccessibleMenuShim = function () {
return this.each(function () {
$(this).find('.hs-menu-wrapper')
.find('ul > li')
.attr({
'role': null
})
.find('> a')
.attr({
'role': null,
'aria-haspopup': null,
'aria-expanded': null
});
});
};
})(jQuery);