@hilemangroup/bp-frontend
Version:
Common shared frontend utilities for boilerplate projects
16 lines (15 loc) • 384 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);