mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
- 에디터 iframe의 경로 문제 해결. (rewrite mod를 사용했을때 document 패스가 잘못 참조되어 그림이 출력되지 않는 문제가 있었음. - 루트에 XE를 깔지 않았을때 게시판에서 나타나는 현상이었음)
- 이모티콘 출력의 경로 문제 근본적으로 수정 - 이모티콘 에디터 컴포넌트 기능 개선(이모티콘 에디터 컴포넌트의 이모티콘 폴더에 새로운 이모티콘 폴더 추가시 자동으로 인식하여 추가됨.) git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2538 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
20276c01e8
commit
3c7ef997cf
3 changed files with 63 additions and 4 deletions
|
|
@ -1,9 +1,9 @@
|
|||
function insertEmoticon(obj) {
|
||||
if(typeof(opener)=='undefined') return;
|
||||
|
||||
var url = obj.src.replace(request_uri,'./');
|
||||
var text = "<img src=\""+url+"\" border=\"0\" alt=\"emoticon\" />";
|
||||
|
||||
var url = obj.src.replace(request_uri,'');
|
||||
var text = "<img editor_component=\"emoticon\" src=\""+url+"\" alt=\"emoticon\">";
|
||||
|
||||
opener.editorFocus(opener.editorPrevSrl);
|
||||
|
||||
var iframe_obj = opener.editorGetIFrame(opener.editorPrevSrl)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue