mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 12:49:55 +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
|
|
@ -48,7 +48,7 @@
|
|||
<!--@if($grant->view)-->
|
||||
<!-- 검색중일 경우는 새창으로 -->
|
||||
<!--@if($search_target && $search_keyword)-->
|
||||
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!-- 검색을 하지 않을 시에는 현재창으로 -->
|
||||
<!--@else-->
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
|
||||
<!--@if($grant->is_admin)-->
|
||||
<!-- 문서 관리 버튼 -->
|
||||
<a href="#" onclick="popopen('{getUrl('act','dispBoardAdminManageDocument')}','manageDocument'); return false;">[{$lang->cmd_manage_document}]</a>
|
||||
<a href="{getUrl('act','dispBoardAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;">[{$lang->cmd_manage_document}]</a>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->blog_name}</th>
|
||||
<td><a href="#" onclick="winopen('{$val->url}');return false;">{$val->blog_name}</a></td>
|
||||
<td><a href="{$val->url}" onclick="window.open(this.href);return false;">{$val->blog_name}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->excerpt}</th>
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
<!-- 최고관리자이면 관리자 페이지 버튼 출력 -->
|
||||
<!--@if($logged_info->is_admin == 'Y')-->
|
||||
<li class="admin"><a href="#" onclick="winopen('{getUrl('','module','admin','act','dispBoardAdminContent')}'); return false;">{$lang->cmd_management}</a></li>
|
||||
<li class="admin"><a href="{getUrl('','module','admin','act','dispBoardAdminContent')}" onclick="winopen(this.href);return false;">{$lang->cmd_management}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 레이아웃이 없으면 로그아웃 버튼 출력 -->
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
<!--@end-->
|
||||
<!--@if($grant->view)-->
|
||||
<!--@if($search_target && $search_keyword)-->
|
||||
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="winopen(this.href,'viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -104,7 +104,7 @@
|
|||
<!--@end-->
|
||||
<!--@if($grant->view)-->
|
||||
<!--@if($search_target && $search_keyword)-->
|
||||
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText(8,'')}</a>
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href,'viewDocument');return false;">{$document->getTitleText(8,'')}</a>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText(8,'')}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
<!--@if($grant->is_admin)-->
|
||||
<!-- 문서 관리 버튼 -->
|
||||
<div class="gap1 fl">
|
||||
<a href="#" onclick="popopen('{getUrl('act','dispBoardAdminManageDocument')}','manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
|
||||
<a href="{getUrl('act','dispBoardAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
</select>
|
||||
<input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" class="inputTypeText"/>
|
||||
<a href="#" onclick="xGetElementById('fo_search').submit();return false;" class="button"><span>{$lang->cmd_search}</span></a>
|
||||
<a href="#" onclick="location.href='{getUrl('','mid',$mid)}';return false;" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
<a href="{getUrl('','mid',$mid)}" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
<!-- 최고관리자이면 관리자 페이지 버튼 출력 -->
|
||||
<!--@if($logged_info->is_admin == 'Y')-->
|
||||
<li class="admin"><a href="#" onclick="winopen('{getUrl('','module','admin','act','dispBoardAdminContent')}'); return false;">{$lang->cmd_management}</a></li>
|
||||
<li class="admin"><a href="{getUrl('','module','admin','act','dispBoardAdminContent')}" onclick="window.open(this.href); return false;">{$lang->cmd_management}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 레이아웃이 없으면 로그아웃 버튼 출력 -->
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@
|
|||
|
||||
<!--@if($grant->view)-->
|
||||
<!--@if($search_target && $search_keyword)-->
|
||||
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="winopen(this.href,'viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
<!--@if($grant->is_admin)-->
|
||||
<!-- 문서 관리 버튼 -->
|
||||
<div class="gap1 fl">
|
||||
<a href="#" onclick="popopen('{getUrl('act','dispBoardAdminManageDocument')}','manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
|
||||
<a href="{getUrl('act','dispBoardAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
</select>
|
||||
<input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" class="inputTypeText"/>
|
||||
<a href="#" onclick="xGetElementById('fo_search').submit();return false;" class="button"><span>{$lang->cmd_search}</span></a>
|
||||
<a href="#" onclick="location.href='{getUrl('','mid',$mid)}';return false;" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
<a href="{getUrl('','mid',$mid)}" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
<!-- 최고관리자이면 관리자 페이지 버튼 출력 -->
|
||||
<!--@if($logged_info->is_admin == 'Y')-->
|
||||
<li class="admin"><a href="#" onclick="winopen('{getUrl('','module','admin','act','dispBoardAdminContent')}'); return false;">{$lang->cmd_management}</a></li>
|
||||
<li class="admin"><a href="{getUrl('','module','admin','act','dispBoardAdminContent')}" onclick="window.open(this.href); return false;">{$lang->cmd_management}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 레이아웃이 없으면 로그아웃 버튼 출력 -->
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@
|
|||
<!--@end-->
|
||||
<!--@if($grant->view)-->
|
||||
<!--@if($search_target && $search_keyword)-->
|
||||
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="winopen(this.href,'viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
<!--@end-->
|
||||
<!--@if($grant->view)-->
|
||||
<!--@if($search_target && $search_keyword)-->
|
||||
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="winopen(this.href,'viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText($module_info->subject_cut_size)}</a>
|
||||
<!--@end-->
|
||||
|
|
@ -160,7 +160,7 @@
|
|||
<!--@if($grant->is_admin)-->
|
||||
<!-- 문서 관리 버튼 -->
|
||||
<div class="gap1 fl">
|
||||
<a href="#" onclick="popopen('{getUrl('act','dispBoardAdminManageDocument')}','manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
|
||||
<a href="{getUrl('act','dispBoardAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
|
|
@ -194,7 +194,7 @@
|
|||
</select>
|
||||
<input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" class="inputTypeText"/>
|
||||
<a href="#" onclick="xGetElementById('fo_search').submit();return false;" class="button"><span>{$lang->cmd_search}</span></a>
|
||||
<a href="#" onclick="location.href='{getUrl('','mid',$mid)}';return false;" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
<a href="{getUrl('','mid',$mid)}" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue