mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 06:09:55 +09:00
MINIFY
This commit is contained in:
parent
198a56819d
commit
d6f3a787c8
3 changed files with 15 additions and 4 deletions
|
|
@ -1431,9 +1431,20 @@ function doDocumentSelect(document_srl, module) {
|
|||
// 게시글을 가져와서 등록하기
|
||||
switch(module) {
|
||||
case 'page' :
|
||||
opener.location.href = opener.current_url.setQuery('document_srl', document_srl).setQuery('act', 'dispPageAdminContentModify');
|
||||
var url = opener.current_url;
|
||||
url = url.setQuery('document_srl', document_srl);
|
||||
|
||||
if(url.getQuery('act') === 'dispPageAdminMobileContentModify')
|
||||
{
|
||||
url = url.setQuery('act', 'dispPageAdminMobileContentModify');
|
||||
}
|
||||
else
|
||||
{
|
||||
url = url.setQuery('act', 'dispPageAdminContentModify');
|
||||
}
|
||||
opener.location.href = url;
|
||||
break;
|
||||
default :
|
||||
default :
|
||||
opener.location.href = opener.current_url.setQuery('document_srl', document_srl).setQuery('act', 'dispBoardWrite');
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue