File: richedit.html

package info (click to toggle)
webcit 8.24-dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 10,888 kB
  • ctags: 4,214
  • sloc: ansic: 33,336; sh: 4,468; makefile: 340; xml: 90; sed: 9
file content (19 lines) | stat: -rw-r--r-- 765 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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",
	gecko_spellcheck : true,
	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>