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

This commit is contained in:
zero 2007-03-19 02:48:13 +00:00
parent a2eba30a0c
commit 00fe8b71f6
5 changed files with 74 additions and 0 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

@ -0,0 +1,8 @@
function insertImage(obj) {
if(typeof(opener)=='undefined') return;
opener.editorInsertEmoticon(obj);
opener.editorFocus(opener.editorPrevSrl);
window.close();
}