G5-87 쇼핑몰 : KCP 결제창 표시될 때 화면이 스크롤되지 않도록 수정 (HSCOMM님, 220503)
This commit is contained in:
@ -25,6 +25,12 @@ function m_Completepayment( FormOrJson, closeEvent )
|
|||||||
/********************************************************************/
|
/********************************************************************/
|
||||||
GetField( frm, FormOrJson );
|
GetField( frm, FormOrJson );
|
||||||
|
|
||||||
|
$("body").css({
|
||||||
|
"position": "",
|
||||||
|
"width": "",
|
||||||
|
"top" : ""
|
||||||
|
});
|
||||||
|
|
||||||
if( frm.res_cd.value == "0000" )
|
if( frm.res_cd.value == "0000" )
|
||||||
{
|
{
|
||||||
document.getElementById("display_pay_button").style.display = "none" ;
|
document.getElementById("display_pay_button").style.display = "none" ;
|
||||||
@ -49,6 +55,11 @@ function jsf__pay( form )
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
KCP_Pay_Execute( form );
|
KCP_Pay_Execute( form );
|
||||||
|
$("body").css({
|
||||||
|
"position": "fixed",
|
||||||
|
"width": "100%",
|
||||||
|
"top" : "0"
|
||||||
|
});
|
||||||
}
|
}
|
||||||
catch (e)
|
catch (e)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user