Final 1.1.1 수정 내역
2018. 11. 14. 01:07
1. common.js 파일 수정
잘못된 변수명이 사용된 부분을 수정했습니다.
패치가 진행됨에 따라 스킨 내 버전 표기를 변경했습니다.
#1. 위치 : 48번째 줄
수정 전
if ( images !== null ) {
수정 후
if ( image !== null ) {
#2. 위치 : 78번째 줄
수정 전
console.log("Square final 1.1 / Skin by wallel.com")
수정 후
console.log("Square final 1.1.1 / Skin by wallel.com")
2. style.css 파일 수정
티스토리의 대표 이미지가 없을 경우 나타나는 기본 이미지가 변경되어 관련된 CSS를 수정했습니다.
#1. 위치 : 362번째 줄 ~ 368번째 줄
수정 전
#recent-post ul li img[src*='cssjs'] { position: absolute; top: 0; bottom: 0; margin: auto 0; opacity: 0.5; -webkit-filter: grayscale(1); -moz-filter: grayscale(1); -ms-filter: grayscale(1); -o-filter: grayscale(1); filter: grayscale(1); }
수정 후
#recent-post ul li img[src*='openGraph'] { position: absolute; top: 0; bottom: 0; margin: auto 0; opacity: 0.5; -webkit-filter: grayscale(1); -moz-filter: grayscale(1); -ms-filter: grayscale(1); -o-filter: grayscale(1); filter: grayscale(1); }