Index: /expansion_pack/textcube/plugins/FootNote/index.php
===================================================================
--- /expansion_pack/textcube/plugins/FootNote/index.php (revision 465)
+++ /expansion_pack/textcube/plugins/FootNote/index.php (revision 483)
@@ -78,5 +78,5 @@
 			var isWYSIWYG = false;
 			try{
-				if(editor.editMode == "WYSIWYG")
+				if(editor.editMode == 'WYSIWYG')
 					isWYSIWYG = true;
 			}
@@ -84,13 +84,11 @@
 			if(isWYSIWYG) {
 				var note = prompt('이 곳에 넣을 주석을 적어주세요.', '');
-				if(note!='') { editor.command("Raw", '[footnote]' + note + '[/footnote]', "");}
+				if(note != '') { editor.command('Raw', '[footnote]' + note + '[/footnote]', '');}
 			}else{
-				insertTag('[footnote]', '[/footnote]');
+				var note = prompt('이 곳에 넣을 주석을 적어주세요.', '');
+				insertTag(editor.textarea, '[footnote]' + note, '[/footnote]');
 			}
 		}
 	//]]>
-	</script>
-	<script type="text/javascript">
-		editor.contentDocument.body.innerHTML = editor.ttml2html(editor.textarea.value);
 	</script>
 	<a href="#" tabindex="125" onClick="AddFootNote();return false;" alt="" title="">주석추가</a>&nbsp;
