mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3043 201d5d3c-b55e-5fd7-737f-ddc643e51545
27 lines
781 B
HTML
27 lines
781 B
HTML
<!--%import("popup.js")-->
|
|
<!--%import("popup.css")-->
|
|
|
|
<div id="popHeadder">
|
|
<h3>
|
|
{$component_info->title} ver. {$component_info->version}
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="emoticonList">
|
|
<select name="list" onchange="getEmoticons(this.options[this.selectedIndex].value); return false;">
|
|
<!--@foreach($emoticon_list as $key => $val)-->
|
|
<option value="{$val}">{$val}</option>
|
|
<!--@end-->
|
|
</select>
|
|
</div>
|
|
|
|
<div id="popBody">
|
|
<!--@foreach($emoticons as $src)-->
|
|
<img src="images/{$src}" alt="{$src}" onclick="insertEmoticon(this); return false;" class="emoticon" />
|
|
<!--@end-->
|
|
|
|
</div>
|
|
|
|
<div id="popFooter" class="tCenter">
|
|
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
|
|
</div>
|