mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 00:29:58 +09:00
css 및 js 호출순서 조정기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4f380d9c48
commit
61851f1dfe
2149 changed files with 109090 additions and 18689 deletions
|
|
@ -17,3 +17,4 @@ li a { text-decoration:none; color:#666666;}
|
|||
|
||||
#popFooter .fl { margin-left:10px; }
|
||||
#popFooter .fr { margin-right:10px; }
|
||||
.poll_box { margin-bottom:15px; }
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
var msg_poll_cannot_modify = "{$lang->msg_poll_cannot_modify}";
|
||||
</script>
|
||||
|
||||
<div id="popHeadder">
|
||||
<h3>{$component_info->title} ver. {$component_info->version}</h3>
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$component_info->title} ver. {$component_info->version}</h3>
|
||||
</div>
|
||||
|
||||
<form action="./" method="post" id="fo_component" onSubmit="procFilter(this, insert_poll); return false;">
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<div id="popBody">
|
||||
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<col width="100" />
|
||||
<col />
|
||||
<tr>
|
||||
|
|
@ -59,12 +59,15 @@
|
|||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><div><label>{$lang->poll_chk_count}</label></div></th>
|
||||
<td><input type="text" name="checkcount_tidx" value="1" size="1" class="inputTypeText" /></td>
|
||||
</table>
|
||||
|
||||
<div id="poll_source" class="clear" style="display:none">
|
||||
<div class="clear"></div>
|
||||
|
||||
<table cellspacing="0" class="adminTable gap1">
|
||||
<table cellspacing="0" class="rowTable gap1">
|
||||
<col width="100" />
|
||||
<col />
|
||||
<tr>
|
||||
|
|
@ -83,30 +86,16 @@
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="pollButton clear">
|
||||
<div class="fl">
|
||||
<label>{$lang->poll_chk_count}</label>
|
||||
<input type="text" name="checkcount_tidx" value="1" size="1" class="inputTypeText" />
|
||||
</div>
|
||||
<div class="fr">
|
||||
<a href="#" onclick="doPollDelete(this); return false;" class="delPoll">{$lang->cmd_del_poll}</a> |
|
||||
<a href="#" onclick="doPollAddItem(this); return false;">{$lang->cmd_add_item}</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<a href="#" onclick="doPollAddItem(this); return false;" class="button black small"><span>{$lang->cmd_add_item}</span></a>
|
||||
<a href="#" onclick="doPollDelete(this); return false;" class="button red small"><span>{$lang->cmd_del_poll}</span></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="popFooter" class="tCenter clear">
|
||||
<div class="fl">
|
||||
<a href="#" onclick="doPollAdd(); return false;" class="button"><span>{$lang->cmd_add_poll}</span></a>
|
||||
</div>
|
||||
<div class="fr">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_submit}" /></span>
|
||||
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
|
||||
<div id="popFooter">
|
||||
<span class="button black strong"><input type="submit" value="{$lang->cmd_submit}" /></span>
|
||||
<a href="#" onclick="doPollAdd(); return false;" class="button blue"><span>{$lang->cmd_add_poll}</span></a>
|
||||
<a href="#" onclick="winopen('./?module=editor&act=dispEditorComponentInfo&component_name={$component_info->component_name}','ComponentInfo','left=10,top=10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;" class="button"><span>{$lang->about_component}</span></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -82,7 +82,8 @@ function doPollAdd() {
|
|||
* 항목 삭제
|
||||
**/
|
||||
function doPollDelete(obj) {
|
||||
var pobj = obj.parentNode.parentNode.parentNode;
|
||||
var pobj = xPrevSib(xPrevSib(obj)).lastChild.lastChild;
|
||||
if(!pobj || typeof(pobj.id)=='undefined') return;
|
||||
var tmp_arr = pobj.id.split('_');
|
||||
var index = tmp_arr[1];
|
||||
if(index==1) return;
|
||||
|
|
@ -106,7 +107,7 @@ function doPollDelete(obj) {
|
|||
* 새 항목 추가
|
||||
**/
|
||||
function doPollAddItem(obj) {
|
||||
var tbl = xPrevSib(obj.parentNode.parentNode);
|
||||
var tbl = xPrevSib(obj);
|
||||
var tbody = tbl.lastChild;
|
||||
var tmp = tbody.firstChild;
|
||||
var source = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue