File: richedit.html

package info (click to toggle)
webcit 8.14-dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 10,100 kB
  • sloc: ansic: 31,320; sh: 4,381; makefile: 340; xml: 90; sed: 9
file content (18 lines) | stat: -rw-r--r-- 739 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script type="text/javascript" src="tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
idealHeight = $('entmsg').offsetHeight - $('msgtext').offsetTop - 10;
tinyMCE.init({
	mode : "textareas",
	width : "100%",
	height : idealHeight,
	browsers : "msie,gecko,safari,opera",
	theme : "advanced",
	plugins : "iespell",
	theme_advanced_buttons1 : "bold, italic, underline, strikethrough, justifyleft, justifycenter, justifyright, justifyfull, blockquote, bullist, numlist, cut, copy, paste, link, image, help, forecolor, iespell, code",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	content_css : "static/styles/webcit-tinymce.css",
	entity_encoding : "raw"
});
</script>