mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-21 04:09:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1496 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
87b16614a5
commit
ea6d983ef6
13 changed files with 39 additions and 39 deletions
|
|
@ -16,10 +16,10 @@ function completeInsertPage(ret_obj) {
|
|||
|
||||
var url = '';
|
||||
if(location.href.getQuery('module')=='admin') {
|
||||
url = location.href.setQuery('module_srl',module_srl).setQuery('act','dispPageAdminInfo');
|
||||
url = current_url.setQuery('module_srl',module_srl).setQuery('act','dispPageAdminInfo');
|
||||
if(page) url = url.setQuery('page',page);
|
||||
} else {
|
||||
url = location.href.setQuery('act','').setQuery('module_srl','');
|
||||
url = current_url.setQuery('act','').setQuery('module_srl','');
|
||||
}
|
||||
|
||||
location.href = url;
|
||||
|
|
@ -33,7 +33,7 @@ function completeDeletePage(ret_obj) {
|
|||
var page = ret_obj['page'];
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispPageAdminContent');
|
||||
var url = current_url.setQuery('act','dispPageAdminContent');
|
||||
if(page) url = url.setQuery('page',page);
|
||||
|
||||
location.href = url;
|
||||
|
|
@ -43,5 +43,5 @@ function completeDeletePage(ret_obj) {
|
|||
function doChangeCategory(sel_obj, url) {
|
||||
var module_category_srl = sel_obj.options[sel_obj.selectedIndex].value;
|
||||
if(!module_category_srl) location.href=url;
|
||||
else location.href = location.href.setQuery('module_category_srl',module_category_srl);
|
||||
else location.href = current_url.setQuery('module_category_srl',module_category_srl);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue