NatLibFi / Skosmos-widget-wiki

1 stars 0 forks source link

Malihu custom scrollbar should be replaced #10

Closed Vainonen closed 1 year ago

Vainonen commented 1 year ago

Malihu custom scrollbar that is not used in Skosmos after jQuery 3.6 update should be replaced:

var scrollbar = $hash.parents(".mCustomScrollbar");
if (scrollbar.length){
    e.preventDefault();
    var scrollmem = $('html,body').scrollTop();
    window.location.hash = this.hash;
    $('html,body').scrollTop(scrollmem);
    scrollbar.mCustomScrollbar("scrollTo", $hash);
}

To fix this issue one can take Skosmos PR https://github.com/NatLibFi/Skosmos/pull/1360 as an example.