MCustomScrollbar не работает, переходите к #id? - PullRequest
0 голосов
/ 07 декабря 2018

извините, но я не говорю по-английски.Моя проблема: Первая страница "a href": page.html # anotherpageid

Вторая страница не работает вместе MCustomScrollbar.Я читаю текст, но не понимаю.

(function($) {
  var hash = window.location.hash
  href = window.location.href.replace(/#.*$/, "");

  $(document).ready(function() {
    if (hash) {
      $(window).scrollTop(0).scrollLeft(0);
      if (window.history && window.history.pushState) {
        window.history.pushState("", "", href);
      } else {
        window.location.href = href;
      }
    }
  });

  $(window).load(function() {
    $(".content").mCustomScrollbar();

    //scroll to location hash
    if (hash) {
      var target = $(hash).parents(".mCustomScrollbar");
      if (target.length) {
        target.mCustomScrollbar("scrollTo", hash);
      }
    }
  });
})(jQuery);
...