mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 10:49:54 +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
|
|
@ -19,14 +19,14 @@
|
|||
<!--@foreach($widget_list as $key => $val)-->
|
||||
<tr>
|
||||
<th scope="row" rowspan="2">
|
||||
<a href="#" onclick="popopen('{getUrl('','module','widget','act','dispWidgetInfo','selected_widget',$val->widget)}','widget_info');return false" class="blue">{$val->title}</a><br />
|
||||
<a href="{getUrl('','module','widget','act','dispWidgetInfo','selected_widget',$val->widget)}" onclick="popopen(this.href,'widget_info');return false" class="blue">{$val->title}</a><br />
|
||||
({$val->widget})
|
||||
</th>
|
||||
<td class="tahoma">{$val->version}</td>
|
||||
<td class="blue"><a href="#" onclick="window.open('{$val->author->homepage}')">{$val->author->name}</a></td>
|
||||
<td class="blue"><a href="{$val->author->homepage}" onclick="window.open(this.href);return false;">{$val->author->name}</a></td>
|
||||
<td class="tahoma">{$val->author->date}</td>
|
||||
<td class="tahoma left">{$val->path}</td>
|
||||
<td class="blue"><a href="#" onclick="popopen('{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$val->widget)}','widget_code_generate');return false">{$lang->cmd_generate_code}</a></td>
|
||||
<td class="blue"><a href="{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$val->widget)}" onclick="popopen(this.href,'widget_code_generate');return false">{$lang->cmd_generate_code}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="5" class="left">
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->homepage}</th>
|
||||
<td><a href="#" onclick="window.open('{$widget_info->author->homepage}');return false;">{$widget_info->author->homepage}</a></td>
|
||||
<td><a href="{$widget_info->author->homepage}" onclick="window.open(this.href);return false;">{$widget_info->author->homepage}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->regdate}</th>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue