});
// Prevent screen reader shortcuts from changing the document hash and breaking angular routes
$('a.screen-reader-shortcut').click(function() {
- var href = $(this).attr('href');
+ var target = $(this).attr('href');
// Show toolbar if hidden
- if (href === '#wp-toolbar' && CRM.menubar.position === 'over-cms-menu') {
+ if (target === '#wp-toolbar' && CRM.menubar.position === 'over-cms-menu') {
CRM.menubar.togglePosition(false);
}
- $(href).focus();
+ $(target).focus();
return false;
});
$('<a href="#crm-qsearch-input" class="screen-reader-shortcut">' + ts("Open CiviCRM Menu") + '</a>')