mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 07:09:56 +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) {
|
switch(module) {
|
||||||
case 'page' :
|
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;
|
break;
|
||||||
default :
|
default :
|
||||||
opener.location.href = opener.current_url.setQuery('document_srl', document_srl).setQuery('act', 'dispBoardWrite');
|
opener.location.href = opener.current_url.setQuery('document_srl', document_srl).setQuery('act', 'dispBoardWrite');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
common/js/xe.min.js
vendored
2
common/js/xe.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue