회원 사이드뷰 전체게시물 클릭시 새창으로 수정

This commit is contained in:
thisgun
2018-07-03 15:51:43 +09:00
parent c6f28c120c
commit 244a496490

View File

@ -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();
}