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@7255 201d5d3c-b55e-5fd7-737f-ddc643e51545
70 lines
2.6 KiB
JavaScript
70 lines
2.6 KiB
JavaScript
/**
|
|
* popup으로 열렸을 경우 부모창의 위지윅에디터에 select된 멀티미디어 컴포넌트 코드를 체크하여
|
|
* 있으면 가져와서 원하는 곳에 삽입
|
|
**/
|
|
function getMultimedia() {
|
|
// 부모 위지윅 에디터에서 선택된 영역이 있는지 확인
|
|
if(typeof(opener)=="undefined") return;
|
|
|
|
var node = opener.editorPrevNode;
|
|
if(!node || node.nodeName != "IMG") return;
|
|
|
|
var url = node.getAttribute("multimedia_src");
|
|
var caption = node.getAttribute("alt");
|
|
var width = xWidth(node);
|
|
var height = xHeight(node);
|
|
var auto_start = node.getAttribute("auto_start");
|
|
var wmode = node.getAttribute("wmode");
|
|
|
|
var fo_obj = xGetElementById('fo');
|
|
|
|
xGetElementById("multimedia_url").value = url;
|
|
xGetElementById("multimedia_caption").value = caption;
|
|
xGetElementById("multimedia_width").value = width-4;
|
|
xGetElementById("multimedia_height").value = height-4;
|
|
if(auto_start=="true") xGetElementById("multimedia_auto_start").checked = true;
|
|
|
|
if(wmode == 'window') fo_obj.multimedia_wmode.selectedIndex = 0;
|
|
else if(wmode == 'opaque') fo_obj.multimedia_wmode.selectedIndex = 1;
|
|
else fo_obj.multimedia_wmode.selectedIndex = 2;
|
|
}
|
|
|
|
function insertMultimedia(obj) {
|
|
if(typeof(opener)=="undefined") return;
|
|
|
|
var url = xGetElementById("multimedia_url").value;
|
|
url = url.replace(request_uri,'');
|
|
// url = encodeURI(url);
|
|
var fo_obj = xGetElementById('fo');
|
|
|
|
var wmode = fo_obj.multimedia_wmode.options[fo_obj.multimedia_wmode.selectedIndex].value;
|
|
|
|
var caption = xGetElementById("multimedia_caption").value;
|
|
|
|
var width = xGetElementById("multimedia_width").value;
|
|
if(!width) width = 400;
|
|
|
|
var height = xGetElementById("multimedia_height").value;
|
|
if(!height) height= 400;
|
|
|
|
var auto_start = "false";
|
|
if(xGetElementById("multimedia_auto_start").checked) auto_start = "true";
|
|
|
|
if(!url) {
|
|
window.close();
|
|
return;
|
|
}
|
|
|
|
var text = "<img src=\"../../../../common/tpl/images/blank.gif\" editor_component=\"multimedia_link\" multimedia_src=\""+url+"\" width=\""+width+"\" height=\""+height+"\" wmode=\""+wmode+"\" style=\"display:block;width:"+width+"px;height:"+height+"px;border:2px dotted #4371B9;background:url(./modules/editor/components/multimedia_link/tpl/multimedia_link_component.gif) no-repeat center;\" auto_start=\""+auto_start+"\" alt=\""+caption+"\" />";
|
|
|
|
opener.editorFocus(opener.editorPrevSrl);
|
|
|
|
var iframe_obj = opener.editorGetIFrame(opener.editorPrevSrl)
|
|
|
|
opener.editorReplaceHTML(iframe_obj, text);
|
|
opener.editorFocus(opener.editorPrevSrl);
|
|
|
|
window.close();
|
|
}
|
|
|
|
xAddEventListener(window, "load", getMultimedia);
|