From 36fbe1b19939d5c76413636634c9e40e4fde9351 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 6 Dec 2013 10:46:21 +0900 Subject: [PATCH] =?UTF-8?q?=EB=86=92=EC=9D=B4=EB=A5=BC=20outerHeight?= =?UTF-8?q?=EB=A1=9C=20=EC=B8=A1=EC=A0=95=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/shop/basic/main.20.skin.php | 2 +- skin/shop/basic/main.30.skin.php | 2 +- skin/shop/basic/main.40.skin.php | 2 +- skin/shop/basic/main.50.skin.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/skin/shop/basic/main.20.skin.php b/skin/shop/basic/main.20.skin.php index 00464ff13..f027dd66d 100644 --- a/skin/shop/basic/main.20.skin.php +++ b/skin/shop/basic/main.20.skin.php @@ -127,7 +127,7 @@ if($i == 1) echo "

등록된 상품이 없습니다.

\ var el_id = this[0].id; $smt.each(function() { - var h = $(this).height(); + var h = $(this).outerHeight(true); if(h > height) height = h; }); diff --git a/skin/shop/basic/main.30.skin.php b/skin/shop/basic/main.30.skin.php index e1d040e2b..62b0f0164 100644 --- a/skin/shop/basic/main.30.skin.php +++ b/skin/shop/basic/main.30.skin.php @@ -124,7 +124,7 @@ if($i == 1) echo "

등록된 상품이 없습니다.

\ var el_id = this[0].id; $smt.each(function() { - var h = $(this).height(); + var h = $(this).outerHeight(true); if(h > height) height = h; }); diff --git a/skin/shop/basic/main.40.skin.php b/skin/shop/basic/main.40.skin.php index fd29ec860..6e748544b 100644 --- a/skin/shop/basic/main.40.skin.php +++ b/skin/shop/basic/main.40.skin.php @@ -127,7 +127,7 @@ if($i == 1) echo "

등록된 상품이 없습니다.

\ var height = 0; $smt.each(function() { - var h = $(this).height(); + var h = $(this).outerHeight(true); if(h > height) height = h; }); diff --git a/skin/shop/basic/main.50.skin.php b/skin/shop/basic/main.50.skin.php index c35bf6126..8a11386a0 100644 --- a/skin/shop/basic/main.50.skin.php +++ b/skin/shop/basic/main.50.skin.php @@ -127,7 +127,7 @@ if($i == 1) echo "

등록된 상품이 없습니다.

\ var el_id = this[0].id; $smt.find("li.sct_li").each(function() { - var h = $(this).height(); + var h = $(this).outerHeight(true); if(h > height) height = h; });