Commit bec6ea20 authored by Phil Hughes's avatar Phil Hughes

fixed breadcrumbs being undefined

parent dae629e5
......@@ -8,6 +8,8 @@ export const addTooltipToEl = (el) => {
export default () => {
const breadcrumbs = document.querySelector('.breadcrumbs-list');
if (breadcrumbs) {
const topLevelLinks = breadcrumbs.querySelectorAll('.breadcrumbs-list > li > a');
const $expander = $('.js-breadcrumbs-collapsed-expander');
......@@ -18,4 +20,5 @@ export default () => {
$('.js-breadcrumbs-collapsed-expander', e.currentTarget).toggleClass('open')
.tooltip('hide');
});
}
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment