mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 07:12:15 +09:00
fix #2142 onclick이 사용된 새 창 열기를 target 속성으로 변경
- 통합검색 모듈 misol_town 스킨도 마찬가지로 수정
This commit is contained in:
parent
1bf96e646e
commit
3ee3d63cb7
32 changed files with 48 additions and 49 deletions
|
|
@ -6,13 +6,13 @@
|
|||
<h2>{$lang->component_author}</h2>
|
||||
<ul>
|
||||
<li loop="$component->author => $author">
|
||||
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a><!--@end--><!--@if($author->homepage && $author->email_address)-->, <!--@end--><!--@if($author->email_address)--><a href="mailto:{$author->email_address}">{$author->email_address}</a><!--@end-->)<!--@end-->
|
||||
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" target="_blank">{$author->homepage}</a><!--@end--><!--@if($author->homepage && $author->email_address)-->, <!--@end--><!--@if($author->email_address)--><a href="mailto:{$author->email_address}">{$author->email_address}</a><!--@end-->)<!--@end-->
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div cond="$component->homepage">
|
||||
<h2>{$lang->homepage}</h2>
|
||||
<p><a href="{$component->homepage}" onclick="window.open(this.href);return false;">{$component->homepage}</a></p>
|
||||
<p><a href="{$component->homepage}" target="_blank">{$component->homepage}</a></p>
|
||||
</div>
|
||||
<div>
|
||||
<h2>{$lang->component_version}</h2>
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
<h2>{$lang->component_license}</h2>
|
||||
<p>
|
||||
{nl2br(trim($component->license))}
|
||||
<a href="{$component->license_link}" cond="$component->license_link" onclick="window.open(this.href);return false;">{$component->license_link}</a>
|
||||
<a href="{$component->license_link}" cond="$component->license_link" target="_blank">{$component->license_link}</a>
|
||||
</p>
|
||||
</div>
|
||||
<div cond="$component->description">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue