Flat 모바일 레이아웃 에러코드 수정.
/html/m.layouts/flatLayout/css
style.css
@import url(http://fonts.googleapis.com/css?family=Exo+2);
->
@import url(https://fonts.googleapis.com/css?family=Exo+2);
보안프로토콜로 수정해줘야 Mixed Content 경고가 뜨지 않습니다!
+
modules/document/tpl/icons/file@2x.gif 404 (Not Found)
RetinaImagePath.check_2x_variant @ retina-1.1.0.min.js?20151210234253:1
이런 경고등도 출력하는데
js파일에서
@2x 로 불러오는데 tpl/icons에는 2x란 파일이 없기 떄문에
ath=path.replace(/\.\w+$/,function(match){return"@2x"+match})
부분을
ath=path.replace(/\.\w+$/,function(match){return""+match}) 로 변경해주시면
더 이상 에러코드가 안보이실껍니다.
댓글 1