#824 add request parameter when popup component

This commit is contained in:
akasima 2014-08-04 15:21:00 +09:00
parent 4e409e6195
commit 60c35b0a60
2 changed files with 2 additions and 1 deletions

View file

@ -208,6 +208,7 @@ function openComponent(component_name, editor_sequence, manual_url) {
var popup_url = request_uri+"?module=editor&act=dispEditorPopup&editor_sequence="+editor_sequence+"&component="+component_name;
if(typeof(manual_url)!="undefined" && manual_url) popup_url += "&manual_url="+escape(manual_url);
if(typeof(current_mid)!="undefined" && current_mid) popup_url += "&mid="+escape(current_mid);
popopen(popup_url, 'editorComponent');
}