mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 11:19:56 +09:00
링크중 href에 #을 주고 onclick에 url을 추가한 부분의 코드를 href에 url을, onclick에 window.open(this.href).. 로 모두 변경
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2105 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cb5d14d0ad
commit
12af1fdf18
55 changed files with 113 additions and 113 deletions
|
|
@ -20,11 +20,11 @@
|
|||
<!--@if($val->title)-->
|
||||
<tr>
|
||||
<td rowspan="2">
|
||||
<a href="#" onclick="popopen('{getUrl('','module','layout','act','dispLayoutAdminInfo','selected_layout',$val->layout)}','layout_info');return false" class="blue">{$val->title}</a> <br />
|
||||
<a href="{getUrl('','module','layout','act','dispLayoutAdminInfo','selected_layout',$val->layout)}" onclick="popopen(this.href,'layout_info');return false" class="blue">{$val->title}</a> <br />
|
||||
({$val->layout})
|
||||
</td>
|
||||
<td class="tahoma">{$val->version}</td>
|
||||
<td><a href="#" onclick="window.open('{$val->author->homepage}')" class="blue">{$val->author->name}</a></td>
|
||||
<td><a href="{$val->author->homepage}" onclick="window.open(this.href);return false;" class="blue">{$val->author->name}</a></td>
|
||||
<td class="tahoma">{$val->menu_count}</td>
|
||||
<td class="tahoma">{$val->author->date}</td>
|
||||
<td class="tahoma">{$val->path}</td>
|
||||
|
|
|
|||
|
|
@ -34,13 +34,13 @@
|
|||
<td class="tahoma">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td>
|
||||
<!--@if(!$val->module_srl)-->
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminModify','layout_srl',$val->layout_srl)}';return false;" class="blue">{$lang->cmd_layout_management}</a>
|
||||
<a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$val->layout_srl)}" class="blue">{$lang->cmd_layout_management}</a>
|
||||
<!--@else-->
|
||||
|
||||
<!--@end-->
|
||||
</td>
|
||||
<td>
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminEdit','layout_srl',$val->layout_srl)}';return false;" class="blue">{$lang->cmd_layout_edit}</a>
|
||||
<a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$val->layout_srl)}" class="blue">{$lang->cmd_layout_edit}</a>
|
||||
</td>
|
||||
<td>
|
||||
<!--@if(!$val->module_srl)-->
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->homepage}</th>
|
||||
<td><a href="#" onclick="window.open('{$layout_info->author->homepage}');return false;">{$layout_info->author->homepage}</a></td>
|
||||
<td><a href="{$layout_info->author->homepage}" onclick="window.open(this.href);return false;">{$layout_info->author->homepage}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->regdate}</th>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
<td>
|
||||
<!--@foreach($widget_list as $widget)-->
|
||||
<div class="fl gap1">
|
||||
<a href="#" onclick="popopen('./?module=widget&act=dispWidgetGenerateCode&selected_widget={$widget->widget}&module_srl={$module_srl}','GenerateCodeInPage');return false;" class="button"><span>{$widget->title}</span></a>
|
||||
<a href="{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$widget->widget,'module_srl',$module_srl)}" onclick="popopen(this.href,'GenerateCodeInPage');return false;" class="button"><span>{$widget->title}</span></a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<!--@if($selected_layout->author->homepage)-->
|
||||
<tr>
|
||||
<th scope="row">{$lang->author}</th>
|
||||
<td><a href="#" onclick="window.open('{$selected_layout->author->homepage}');return false;" class="blue">{$selected_layout->author->name}</a></td>
|
||||
<td><a href="{$selected_layout->author->homepage}" onclick="window.open(this.href);return false;" class="blue">{$selected_layout->author->name}</a></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<!--@if($selected_layout->author->description)-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue