php8.0 버전 호환 코드 적용 및 PHP 끝 태그 삭제 일괄적용
This commit is contained in:
@ -18,13 +18,13 @@ function certify_win_open(type, url, event)
|
||||
}
|
||||
else if(type == 'kcp-hp')
|
||||
{
|
||||
if($("input[name=veri_up_hash]").size() < 1)
|
||||
if($("input[name=veri_up_hash]").length < 1)
|
||||
$("input[name=cert_no]").after('<input type="hidden" name="veri_up_hash" value="">');
|
||||
|
||||
if( navigator.userAgent.indexOf("Android") > - 1 || navigator.userAgent.indexOf("iPhone") > - 1 )
|
||||
{
|
||||
var $frm = $(event.target.form);
|
||||
if($("#kcp_cert").size() < 1) {
|
||||
if($("#kcp_cert").length < 1) {
|
||||
$frm.wrap('<div id="cert_info"></div>');
|
||||
|
||||
$("#cert_info").append('<form name="form_temp" method="post">');
|
||||
@ -66,7 +66,7 @@ function certify_win_open(type, url, event)
|
||||
var $frm = $(event.target.form),
|
||||
lgu_cert = "lgu_cert";
|
||||
|
||||
if($("#lgu_cert").size() < 1) {
|
||||
if($("#lgu_cert").length < 1) {
|
||||
$frm.wrap('<div id="cert_info"></div>');
|
||||
|
||||
$("#cert_info").append('<form name="form_temp" method="post">');
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
var $element = this.find(cfg.element);
|
||||
var $this = this;
|
||||
|
||||
if($element.size() < 1)
|
||||
if($element.length < 1)
|
||||
return;
|
||||
|
||||
function item_arrange()
|
||||
|
||||
@ -89,7 +89,7 @@ function menu_rearrange(el)
|
||||
$gnb_1dli = $(".gnb_1dli:eq("+i+")");
|
||||
w1 = $gnb_1dli.outerWidth();
|
||||
|
||||
if($gnb_1dli.find(".gnb_2dul").size())
|
||||
if($gnb_1dli.find(".gnb_2dul").length)
|
||||
w2 = $gnb_1dli.find(".gnb_2dli > a").outerWidth(true);
|
||||
else
|
||||
w2 = w1;
|
||||
|
||||
Reference in New Issue
Block a user