mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
21 lines
866 B
HTML
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>
|