109 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			HTML
		
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
<title>Gecko caret tests</title>
 | 
						|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | 
						|
<script src="../js/tinymce/tinymce.dev.js"></script>
 | 
						|
<script>
 | 
						|
function init() {
 | 
						|
	tinymce.init({
 | 
						|
		mode : "textareas",
 | 
						|
		plugins : "autolink,lists,pagebreak,layer,table,save,emoticons,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,template,wordcount,advlist",
 | 
						|
		theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
 | 
						|
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
 | 
						|
		theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emoticons,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
 | 
						|
		theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
 | 
						|
		theme_advanced_toolbar_location : "top",
 | 
						|
		theme_advanced_toolbar_align : "left",
 | 
						|
		theme_advanced_statusbar_location : "bottom",
 | 
						|
		theme_advanced_resizing : true,
 | 
						|
		valid_elements: '*[*]',
 | 
						|
		add_unload_trigger : false,
 | 
						|
		editor_selector : 'editable',
 | 
						|
		content_css: 'css/gecko_caret.css'
 | 
						|
	});
 | 
						|
}
 | 
						|
 | 
						|
function reInit10x() {
 | 
						|
	tinymce.execCommand('mceRemoveEditor', false, 'elm3');
 | 
						|
 | 
						|
	for (var i = 0; i < 10; i++) {
 | 
						|
		tinymce.execCommand('mceRemoveEditor', false, 'elm3');
 | 
						|
		tinymce.execCommand('mceAddEditor', false, 'elm3');
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
init();
 | 
						|
</script>
 | 
						|
</head>
 | 
						|
<body role="application">
 | 
						|
 | 
						|
<form method="post" action="http://www.tinymce.com/dump.php?example=true">
 | 
						|
	<div>
 | 
						|
		<h3>Visible editor</h3>
 | 
						|
 | 
						|
		<div>
 | 
						|
			<div id="container1">
 | 
						|
				<textarea id="elm1" name="elm1" rows="7" cols="80" style="width: 80%" class="editable">
 | 
						|
					<p>
 | 
						|
						This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b>
 | 
						|
					</p>
 | 
						|
					<p>
 | 
						|
						Another paragraph.
 | 
						|
					</p>
 | 
						|
					<table>
 | 
						|
						<tr><td>Cell</td></tr>
 | 
						|
					</table>
 | 
						|
				</textarea>
 | 
						|
			</div>
 | 
						|
			<a href="#" onclick="tinymce.DOM.show('container1');return false;">[Show]</a>
 | 
						|
			<a href="#" onclick="tinymce.DOM.hide('container1');return false;">[Hide]</a>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<h3>Invisible editor</h3>
 | 
						|
		<div>
 | 
						|
			<div id="container2" style="display: none">
 | 
						|
				<textarea id="elm2" name="elm2" rows="7" cols="80" style="width: 80%" class="editable">
 | 
						|
					<p>
 | 
						|
						This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b>
 | 
						|
					</p>
 | 
						|
					<p>
 | 
						|
						Another paragraph.
 | 
						|
					</p>
 | 
						|
					<table>
 | 
						|
						<tr><td>Cell</td></tr>
 | 
						|
					</table>
 | 
						|
				</textarea>
 | 
						|
			</div>
 | 
						|
 | 
						|
			<a href="#" onclick="tinymce.DOM.show('container2');return false;">[Show]</a>
 | 
						|
			<a href="#" onclick="tinymce.DOM.hide('container2');return false;">[Hide]</a>
 | 
						|
		</div>
 | 
						|
		
 | 
						|
		<h3>On demand editor</h3>
 | 
						|
		<div>
 | 
						|
			<div id="container3">
 | 
						|
				<textarea id="elm3" name="elm3" rows="7" cols="80" style="width: 80%">
 | 
						|
					<p>
 | 
						|
						This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b>
 | 
						|
					</p>
 | 
						|
					<p>
 | 
						|
						Another paragraph.
 | 
						|
					</p>
 | 
						|
					<table>
 | 
						|
						<tr><td>Cell</td></tr>
 | 
						|
					</table>
 | 
						|
				</textarea>
 | 
						|
			</div>
 | 
						|
 | 
						|
			<a href="#" onclick="tinymce.execCommand('mceAddEditor', false, 'elm3');return false;">[Init]</a>
 | 
						|
			<a href="#" onclick="tinymce.DOM.show('container3');return false;">[Show]</a>
 | 
						|
			<a href="#" onclick="tinymce.DOM.hide('container3');return false;">[Hide]</a>
 | 
						|
			<a href="#" onclick="tinymce.execCommand('mceRemoveEditor', false, 'elm3');return false;">[Remove]</a>
 | 
						|
			<a href="#" onclick="reInit10x();return false;">[Re-init 10x]</a>
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
</form>
 | 
						|
 | 
						|
</body>
 | 
						|
</html> |