issue 49 add opage module and article type

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8491 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2011-06-15 10:27:19 +00:00
parent f9b695f734
commit 3c313f80a9
31 changed files with 859 additions and 56 deletions

View file

@ -25,6 +25,21 @@ function completeInsertPage(ret_obj) {
location.href = url;
}
function completeArticleDocumentInserted(ret_obj){
var error = ret_obj['error'];
var message = ret_obj['message'];
var mid = ret_obj['mid'];
alert(message);
var url = '';
url = current_url.setQuery('act', 'dispPageIndex').setQuery('mid', mid);
location.href = url;
}
/* 내용 저장 후 */
function completeInsertPageContent(ret_obj) {
var error = ret_obj['error'];
@ -108,3 +123,4 @@ function doCartSetup(url) {
url += "&module_srls="+module_srl.join(',');
popopen(url,'modulesSetup');
}