기본 이모티콘을 select로 선택가능하게 하고 3개의 이모티콘 팩 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3043 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-22 05:06:54 +00:00
parent d05dbf66f1
commit 636091170a
151 changed files with 67 additions and 33 deletions

View file

@ -2,13 +2,22 @@
<!--%import("popup.css")-->
<div id="popHeadder">
<h1>{$component_info->title} ver. {$component_info->version}</h1>
<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($emoticon_list as $emoticon)-->
<img src="images/{$emoticon}" alt="emoticon" onclick="insertEmoticon(this); return false;" class="emoticon" />
<!--@foreach($emoticons as $src)-->
<img src="images/{$src}" alt="{$src}" onclick="insertEmoticon(this); return false;" class="emoticon" />
<!--@end-->
</div>