Skip to content

Commit

Permalink
Merge pull request #682 from LI-NA/patch-1
Browse files Browse the repository at this point in the history
이미지 파일 삽입시 빈 줄 추가
  • Loading branch information
akasima committed May 7, 2014
2 parents 3c9894b + 873a8dd commit 688ab0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/editor/tpl/js/uploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ function insertUploadedFile(editorSequence) {
temp_code = '';
temp_code += "<img src=\""+file.download_url+"\" alt=\""+file.source_filename+"\"";
if(obj.complete === true) { temp_code += " width=\""+obj.width+"\" height=\""+obj.height+"\""; }
temp_code += " />\r\n";
temp_code += " />\r\n<p><br /></p>\r\n";
text.push(temp_code);
} else {
// 이미지외의 경우는 multimedia_link 컴포넌트 연결
Expand Down

0 comments on commit 688ab0f

Please sign in to comment.