rhymix/modules/editor/components/emoticon/tpl/popup.html
Min-Soo Kim 4a8133417c
Remove meaningless button on emoticon component
이모티콘 에디터 컴포넌트에서 복붙의 흔적으로 보이는 삽입 버튼 삭제.
2018-08-19 19:17:01 +09:00

21 lines
866 B
HTML

<load target="popup.js" />
<load target="popup.css" />
{@Context::addMetaTag('viewport', 'width=device-width', FALSE);}
<div class="x_modal-header">
<h1>{$component_info->title}</h1>
</div>
<div class="x_modal-body">
<div>
<select name="list" id="selectEmoticonList">
<!--@foreach($emoticon_list as $key => $val)-->
<option <!--@if($val=='msn')-->selected="select"<!--@end--> value="{$val}">{$val}</option>
<!--@end-->
</select>
</div>
<div id="emoticons" style="min-height:1px"></div>
<div class="x_clearfix btnArea">
<div class="x_pull-right">
<a class="x_btn" href="{getUrl('','module','editor','act','dispEditorComponentInfo','component_name',$component_info->component_name)}" target="_blank" onclick="window.open(this.href,'ComponentInfo','width=10,height=10');return false;">{lang('editor.about_component')}</a>
</div>
</div>
</div>