mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 00:59:58 +09:00
#19495309 메뉴 모듈 : 존재하지 않는 파일 호출+JS 오류 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8062 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7bb4dc138d
commit
6edda05a6f
3 changed files with 10 additions and 11 deletions
|
|
@ -12,7 +12,6 @@
|
||||||
**/
|
**/
|
||||||
function init() {
|
function init() {
|
||||||
$this->setTemplatePath($this->module_path.'tpl');
|
$this->setTemplatePath($this->module_path.'tpl');
|
||||||
Context::addJsFile('./common/js/tree_menu.js');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
<!--%import("js/board_admin.js")-->
|
|
||||||
|
|
||||||
<h3 class="xeAdmin"><span class="gray">{$lang->menu_management}</span></h3>
|
<h3 class="xeAdmin"><span class="gray">{$lang->menu_management}</span></h3>
|
||||||
|
|
||||||
<div class="infoText">{nl2br($lang->about_menu)}</div>
|
<div class="infoText">{nl2br($lang->about_menu)}</div>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
<!--%import("filter/update_menu_title.xml")-->
|
<load target="filter/update_menu_title.xml" />
|
||||||
<!--%import("filter/insert_menu_item.xml")-->
|
<load target="filter/insert_menu_item.xml" />
|
||||||
<!--%import("filter/delete_menu_item.xml")-->
|
<load target="filter/delete_menu_item.xml" />
|
||||||
<!--%import("filter/move_menu_item.xml")-->
|
<load target="filter/move_menu_item.xml" />
|
||||||
|
|
||||||
<!--%import("js/menu_tree.js")-->
|
<load target="js/menu_admin.js" type="body" />
|
||||||
<!--%import("js/menu_admin.js")-->
|
<load target="js/menu_tree.js" type="body" />
|
||||||
|
|
||||||
<!--// tree javascript plugin load -->
|
<!--// tree javascript plugin load -->
|
||||||
<!--%load_js_plugin("ui.tree")-->
|
<!--%load_js_plugin("ui.tree")-->
|
||||||
|
|
@ -88,7 +88,9 @@ var simpleTreeCollection;
|
||||||
var max_menu_depth = 999;
|
var max_menu_depth = 999;
|
||||||
var xml_url = "{$menu_info->xml_file}";
|
var xml_url = "{$menu_info->xml_file}";
|
||||||
var lang_confirm_delete = "{$lang->confirm_delete}";
|
var lang_confirm_delete = "{$lang->confirm_delete}";
|
||||||
doMoveMenuInfo();
|
jQuery(function(){
|
||||||
Tree(xml_url);
|
doMoveMenuInfo();
|
||||||
|
Tree(xml_url);
|
||||||
|
});
|
||||||
//]]>
|
//]]>
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue