summaryrefslogtreecommitdiff
path: root/html/content/js/Plugins/breadcrumb.js
blob: 112824bd9c3d1b0538b669290278f230e65aaf71 (plain)
1
2
3
4
5
6
7
8
9
$$plugins.define('breadcrumb', function (element, options) {
    var scrollPos = element.querySelector('.breadcrumb__item:last-child').offsetLeft - element.offsetLeft;

    element.scroll({
        top: 0,
        left: scrollPos,
        behavior: 'smooth'
    });
});