메뉴 추가창 ie에서 스크롤 생기지 않는 문제 수정

This commit is contained in:
chicpro
2014-03-18 16:56:16 +09:00
parent 34977008e6
commit 021d3d4147

View File

@ -171,14 +171,14 @@ function add_menu()
}); });
var url = "./menu_form.php?code="+max_code+"&new=new"; var url = "./menu_form.php?code="+max_code+"&new=new";
window.open(url, "add_menu", "left=100,top=100,width=550,height=650"); window.open(url, "add_menu", "left=100,top=100,width=550,height=650,scrollbars=yes,resizable=yes");
return false; return false;
} }
function add_submenu(code) function add_submenu(code)
{ {
var url = "./menu_form.php?code="+code; var url = "./menu_form.php?code="+code;
window.open(url, "add_menu", "left=100,top=100,width=550,height=650"); window.open(url, "add_menu", "left=100,top=100,width=550,height=650,scrollbars=yes,resizable=yes");
return false; return false;
} }