git-svn-id: http://xe-core.googlecode.com/svn/trunk@520 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-19 02:35:25 +00:00
parent f564dfb046
commit 59f0a4e6d3
9 changed files with 100 additions and 17 deletions

View file

@ -0,0 +1,9 @@
#emoticon_area {
width:230px;
padding:10px 0px 10px 0px;
text-align:center;
}
#emoticon_area img {
margin:2px;
}

View file

@ -1,5 +1,8 @@
<!--%import("popup.js")-->
<!--%import("popup.css")-->
<div id="emoticon_area">
<!--@foreach($emoticon_list as $emoticon)-->
<img src="images/{$emoticon}" alt="emoticon" onclick="insertImage(this)" style="cursor:pointer;" />
<!--@end-->
</div>

View file

@ -3,4 +3,6 @@ function insertImage(obj) {
opener.editorInsertEmoticon(obj);
opener.editorFocus(opener.editorPrevSrl);
self.close();
}