mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 19:29: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
|
|
@ -61,8 +61,8 @@ xe_layout_menu['bottom_menu'][1][{$first_key}] = { "text":"{htmlspecialchars($fi
|
|||
<!--@if($grant->is_admin)-->
|
||||
<!-- 관리자일 경우 레이아웃 관리 메뉴 -->
|
||||
<div class="layout_admin">
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}';return false;">{$lang->cmd_layout_management}</a> /
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}';return false;">{$lang->cmd_edit}</a>
|
||||
<a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_layout_management}</a> /
|
||||
<a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_edit}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
<!--@end-->
|
||||
|
||||
<span class="{$class_name}">
|
||||
<a href="#" onclick="return move_url('{$val['href']}','{$val['open_window']}');">{$val['text']}</a>
|
||||
<a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
|
||||
</span>
|
||||
|
||||
<!--@end--><!--@end-->
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
<!--@end-->
|
||||
|
||||
<span class="{$class_name}">
|
||||
<a href="#" onclick="return move_url('{$val['href']}','{$val['open_window']}');">{$val['text']}</a>
|
||||
<a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
|
||||
</span>
|
||||
|
||||
<!--@if($val['selected'])-->
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
<!--@end-->
|
||||
|
||||
<span class="{$class_name}">
|
||||
<a href="#" onclick="return move_url('{$v['href']}','{$v['open_window']}');">{$v['text']}</a>
|
||||
<a href="{$v['href']}" <!--@if($v['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$v['text']}</a>
|
||||
</span>
|
||||
<!--@end--><!--@end-->
|
||||
<!--@end-->
|
||||
|
|
@ -70,8 +70,8 @@
|
|||
<!--@if($grant->is_admin)-->
|
||||
<!-- 관리자일 경우 레이아웃 관리 메뉴 -->
|
||||
<div class="layout_admin">
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}';return false;">{$lang->cmd_layout_management}</a> /
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}';return false;">{$lang->cmd_edit}</a>
|
||||
<a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_layout_management}</a> /
|
||||
<a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_edit}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
<!--@end-->
|
||||
|
||||
<span class="{$class_name}">
|
||||
<a href="#" onclick="return move_url('{$val['href']}','{$val['open_window']}');">{$val['text']}</a>
|
||||
<a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
|
||||
</span>
|
||||
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -44,13 +44,13 @@
|
|||
<!--@if($val['selected'])-->
|
||||
{@ $menu_1st = $val }
|
||||
<!--@if($val['open_window']=='Y')-->
|
||||
<div class="item i_se"><a href="#" onclick="window.open('{$val['href']}');return false;">{$val['text']}</a></div>
|
||||
<div class="item i_se"><a href="{$val['href']}" onclick="window.open(this.href);return false;">{$val['text']}</a></div>
|
||||
<!--@else-->
|
||||
<div class="item i_se"><a href="{$val['href']}">{$val['text']}</a></div>
|
||||
<!--@end-->
|
||||
<!--@else-->
|
||||
<!--@if($val['open_window']=='Y')-->
|
||||
<div class="item i_nm" onmouseover="this.className = 'item i_ov';" onmouseout="this.className = 'item i_nm';"><a href="#" onclick="window.open('{$val['href']}');return false;">{$val['text']}</a></div>
|
||||
<div class="item i_nm" onmouseover="this.className = 'item i_ov';" onmouseout="this.className = 'item i_nm';"><a href="{$val['href']}" onclick="window.open(this.href);return false;">{$val['text']}</a></div>
|
||||
<!--@else-->
|
||||
<div class="item i_nm" onmouseover="this.className = 'item i_ov';" onmouseout="this.className = 'item i_nm';"><a href="{$val['href']}">{$val['text']}</a></div>
|
||||
<!--@end-->
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
<div class="item <!--@if($idx<1)-->last<!--@end-->">
|
||||
<!--@if($val['selected'])-->
|
||||
<!--@if($val['open_window']=='Y')-->
|
||||
<a href="#" onclick="window.open('{$val['href']}');return false;" class="i_se">{$val['text']}</a>
|
||||
<a href="{$val['href']}" onclick="window.open(this.href);return false;" class="i_se">{$val['text']}</a>
|
||||
<!--@else-->
|
||||
<a href="{$val['href']}" class="i_se">{$val['text']}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -104,13 +104,13 @@
|
|||
<!--@foreach($val['list'] as $k => $v)--><!--@if($v['text'])-->
|
||||
<!--@if($v['selected'])-->
|
||||
<!--@if($val['open_window']=='Y')-->
|
||||
<div class="item"><a href="#" onclick="window.open('{$v['href']}');return false;" class="i_se">{$v['text']}</a></div>
|
||||
<div class="item"><a href="{$v['href']}" onclick="window.open(this.href);return false;" class="i_se">{$v['text']}</a></div>
|
||||
<!--@else-->
|
||||
<div class="item"><a href="{$v['href']}" class="i_se">{$v['text']}</a></div>
|
||||
<!--@end-->
|
||||
<!--@else-->
|
||||
<!--@if($val['open_window']=='Y')-->
|
||||
<div class="item"><a href="#" onclick="window.open('{$v['href']}');return false;">{$v['text']}</a></div>
|
||||
<div class="item"><a href="{$v['href']}" onclick="window.open(this.href);return false;">{$v['text']}</a></div>
|
||||
<!--@else-->
|
||||
<div class="item"><a href="{$v['href']}">{$v['text']}</a></div>
|
||||
<!--@end-->
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
<!--@end-->
|
||||
<!--@else-->
|
||||
<!--@if($val['open_window']=='Y')-->
|
||||
<a href="#" onclick="window.open('{$val['href']}');return false;">{$val['text']}</a>
|
||||
<a href="{$val['href']}" onclick="window.open(this.href);return false;">{$val['text']}</a>
|
||||
<!--@else-->
|
||||
<a href="{$val['href']}">{$val['text']}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -134,9 +134,9 @@
|
|||
<!--@if($grant->is_admin)-->
|
||||
<!-- 관리자일 경우 레이아웃 관리 메뉴 -->
|
||||
<div class="layout_menu">
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}';return false;">{$lang->cmd_layout_management}</a>
|
||||
<a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_layout_management}</a>
|
||||
|
|
||||
<a href="#" onclick="location.href='{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}';return false;">{$lang->cmd_edit}</a>
|
||||
<a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_edit}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue