From 244a496490f464be864ee7bfef61b4dc68a80011 Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 3 Jul 2018 15:51:43 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9B=90=20=EC=82=AC=EC=9D=B4?= =?UTF-8?q?=EB=93=9C=EB=B7=B0=20=EC=A0=84=EC=B2=B4=EA=B2=8C=EC=8B=9C?= =?UTF-8?q?=EB=AC=BC=20=ED=81=B4=EB=A6=AD=EC=8B=9C=20=EC=83=88=EC=B0=BD?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/common.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/common.js b/js/common.js index d69064d4f..7c4c8aa2e 100644 --- a/js/common.js +++ b/js/common.js @@ -350,7 +350,8 @@ var check_goto_new = function(href, event) { if( !(typeof g5_is_mobile != "undefined" && g5_is_mobile) ){ if (window.opener && window.opener.document && window.opener.document.getElementById) { event.preventDefault ? event.preventDefault() : (event.returnValue = false); - window.opener.document.location.href = href; + window.open(href); + //window.opener.document.location.href = href; } } } @@ -359,7 +360,7 @@ var check_goto_new = function(href, event) { * 메일 창 **/ var win_email = function(href) { - var new_win = window.open(href, 'win_email', 'left=100,top=100,width=600,height=580,scrollbars=0'); + var new_win = window.open(href, 'win_email', 'left=100,top=100,width=600,height=580,scrollbars=1'); new_win.focus(); }