mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 02:39: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
|
|
@ -18,10 +18,10 @@
|
|||
<tbody>
|
||||
<!--@foreach($component_list as $component_name => $xml_info)-->
|
||||
<tr>
|
||||
<th scope="row" rowspan="2"><a href="#" onclick="popopen('{getUrl('module','editor','act','dispEditorComponentInfo','component_name',$component_name)}');return false;" class="blue">{$xml_info->title}</a><br />({$component_name})</th>
|
||||
<th scope="row" rowspan="2"><a href="{getUrl('module','editor','act','dispEditorComponentInfo','component_name',$component_name)}" onclick="popopen(this.href);return false;" class="blue">{$xml_info->title}</a><br />({$component_name})</th>
|
||||
<td class="tahoam">{$xml_info->version}</td>
|
||||
<td><a href="mailto:{$xml_info->author->email_address}">{$xml_info->author->name}</a></td>
|
||||
<td class="blue"><a href="#" onclick="window.open('{$xml_info->author->link}');return false;">{$xml_info->author->link}</a></td>
|
||||
<td class="blue"><a href="{$xml_info->author->link}" onclick="window.open(this.href);return false;">{$xml_info->author->link}</a></td>
|
||||
<td class="tahoma">{$xml_info->author->date}</td>
|
||||
<td class="tahoma">
|
||||
<!--@if($xml_info->extra_vars)-->
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->component_link}</th>
|
||||
<td><a href="#" onclick="winopen('{$component->author->link}');return false;">{$component->author->link}</a></td>
|
||||
<td><a href="{$component->author->link}" onclick="window.open(this.href);return false;">{$component->author->link}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->component_description}</th>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue