폰트 리사이즈 함수 실행 코드를 tail.php 파일로 이동

This commit is contained in:
chicpro
2013-09-17 13:44:24 +09:00
parent 21eaa1962d
commit b4de497107
2 changed files with 10 additions and 6 deletions

View File

@ -65,6 +65,16 @@ if ($config['cf_analytics']) {
<!-- } 하단 끝 -->
<script>
$(function() {
// 폰트 리사이즈 쿠키있으면 실행
var font_resize_act = get_cookie("ck_font_resize_act");
if(font_resize_act != "") {
font_resize("container", font_resize_act);
}
});
</script>
<?php
include_once(G5_PATH."/tail.sub.php");
?>