소스 검색

Autoscroll leftnav to current active navlink

Vijayakrishnan 4 년 전
부모
커밋
5e70a04a95
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      resources/views/layouts/pro-logged-in.blade.php

+ 2 - 1
resources/views/layouts/pro-logged-in.blade.php

@@ -350,7 +350,8 @@
             setTimeout(() => {
                 if($('.nav-link.active').length) {
                     $('.nav-link.active')[0].scrollIntoView({
-                        behavior: "smooth"
+                        behavior: "smooth",
+                        block: "nearest"
                     });
                 }
             }, 1000);