File: fckdocument.html

package info (click to toggle)
moin 1.5.3-1.2etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 20,692 kB
  • ctags: 26,801
  • sloc: python: 32,907; java: 10,704; perl: 1,424; php: 642; makefile: 172; xml: 162; sh: 121; sed: 5
file content (17 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
	window.onload = function()
	{
		document.designMode = 'on' ;

		// Tell Gecko to use or not the <SPAN> tag for the bold, italic and underline.
		document.execCommand( 'useCSS', false, !window.parent.FCKConfig.GeckoUseSPAN ) ;

		window.parent.FCK.OnAfterSetHTML() ;
	}
	
	if ( window.parent._TempHtml )
	{
		document.write( window.parent._TempHtml ) ;
		window.parent._TempHtml = null ;
	}
</script>