높이를 outerHeight로 측정하도록 수정

This commit is contained in:
chicpro
2013-12-06 10:46:21 +09:00
parent 0c8f0e4d9f
commit 36fbe1b199
4 changed files with 4 additions and 4 deletions

View File

@ -127,7 +127,7 @@ if($i == 1) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\
var el_id = this[0].id;
$smt.each(function() {
var h = $(this).height();
var h = $(this).outerHeight(true);
if(h > height)
height = h;
});

View File

@ -124,7 +124,7 @@ if($i == 1) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\
var el_id = this[0].id;
$smt.each(function() {
var h = $(this).height();
var h = $(this).outerHeight(true);
if(h > height)
height = h;
});

View File

@ -127,7 +127,7 @@ if($i == 1) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\
var height = 0;
$smt.each(function() {
var h = $(this).height();
var h = $(this).outerHeight(true);
if(h > height)
height = h;
});

View File

@ -127,7 +127,7 @@ if($i == 1) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\
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;
});