소스 검색

fixe autoscroll bug, limit behaviour to front page

Bachir Soussi Chiadmi 7 년 전
부모
커밋
5bd36c66a3
2개의 변경된 파일10개의 추가작업 그리고 9개의 파일을 삭제
  1. 0 0
      sites/all/themes/figureslibres/clameurs/js/dist/script.min.js
  2. 10 9
      sites/all/themes/figureslibres/clameurs/js/script.js

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
sites/all/themes/figureslibres/clameurs/js/dist/script.min.js


+ 10 - 9
sites/all/themes/figureslibres/clameurs/js/script.js

@@ -56,15 +56,16 @@
 
   function initAutoScroll(){
     console.log('initAutoScroll');
-    var anchor = $('a.anchor.publie', "#thematique-anchor-links").last().attr('href');
-    console.log(anchor);
-    (function(anchor){
-      setTimeout(function(){
-        console.log('Timeout');
-        window.location.href = anchor;
-      }, 1000);
-    })(anchor);
-
+    if($('body').is('.front')){
+      var anchor = $('a.anchor.publie', "#thematique-anchor-links").last().attr('href');
+      console.log(anchor);
+      (function(anchor){
+        setTimeout(function(){
+          console.log('Timeout');
+          window.location.href = anchor;
+        }, 1000);
+      })(anchor);
+    }
   };
 
   init();

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.