소스 검색

Fix CW issues in static view on Safari (Fixes #8354) (#8446)

* Fix CW issues in static view on Safari (8354)

* Fixed formatting issues

* Trailing space
master
PatrickRWells 5 년 전
committed by Eugen Rochko
부모
커밋
5c42e8b51b
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      app/javascript/packs/public.js

+ 4
- 1
app/javascript/packs/public.js 파일 보기

@@ -79,7 +79,10 @@ function main() {
.catch(error => console.error(error));
}

new Rellax('.parallax', { speed: -1 });
const parallaxComponents = document.querySelectorAll('.parallax');
if (parallaxComponents.length > 0 ) {
new Rellax('.parallax', { speed: -1 });
}

const history = createHistory();
const detailedStatuses = document.querySelectorAll('.public-layout .detailed-status');


불러오는 중...
취소
저장