mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1639 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
248fb7b786
commit
ef531f5eed
2 changed files with 6 additions and 2 deletions
|
|
@ -79,7 +79,9 @@ function blogDrawTreeMenu(oXml, callback_func, resopnse_tags, null_func, param)
|
|||
// 제목 지정
|
||||
var title_class = "selected";
|
||||
if(blog_menu_selected) title_class = "unselected";
|
||||
html = '<div class="title_box"><span class="'+title_class+'" id="blog_title" onclick="location.href=\''+index_url+'\';return false;" >'+title+'</span> <span class="document_count">('+total_document_count+')</span></div>'+html;
|
||||
html = '<div class="title_box"><span class="'+title_class+'" id="blog_title" onclick="location.href=\''+index_url+'\';return false;" >'+title+'</span> <span class="document_count">';
|
||||
if(total_document_count) html += '('+total_document_count+')';
|
||||
html + ='</span></div>'+html;
|
||||
|
||||
// 출력하려는 zone이 없다면 load후에 출력하도록 함
|
||||
if(!zone) {
|
||||
|
|
|
|||
|
|
@ -79,7 +79,9 @@ function blogDrawTreeMenu(oXml, callback_func, resopnse_tags, null_func, param)
|
|||
// 제목 지정
|
||||
var title_class = "selected";
|
||||
if(blog_menu_selected) title_class = "unselected";
|
||||
html = '<div class="title_box"><span class="'+title_class+'" id="blog_title" onclick="location.href=\''+index_url+'\';return false;" >'+title+'</span> <span class="document_count">('+total_document_count+')</span></div>'+html;
|
||||
var title_html = '<div class="title_box"><span class="'+title_class+'" id="blog_title" onclick="location.href=\''+index_url+'\';return false;" >'+title+'</span> <span class="document_count">';
|
||||
if(total_document_count) title_html += '('+total_document_count+')';
|
||||
html = title_html+'</span></div>'+html;
|
||||
|
||||
// 출력하려는 zone이 없다면 load후에 출력하도록 함
|
||||
if(!zone) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue