Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
431 ddelon 1
/*
2
 * FCKeditor - The text editor for internet
3
 * Copyright (C) 2003-2005 Frederico Caldeira Knabben
4
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
7
 *
8
 * For further information visit:
9
 * 		http://www.fckeditor.net/
10
 *
11
 * File Name: fcktoolbarbreak_ie.js
12
 * 	FCKToolbarBreak Class: breaks the toolbars.
13
 * 	It makes it possible to force the toolbar to brak to a new line.
14
 * 	This is the IE specific implementation.
15
 *
16
 * File Authors:
17
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
18
 */
19
 
20
var FCKToolbarBreak = function()
21
{
22
	var oBreakDiv = document.createElement( 'div' ) ;
23
 
24
	oBreakDiv.className = 'TB_Break' ;
25
 
26
	oBreakDiv.style.clear = FCKLang.Dir == 'rtl' ? 'left' : 'right' ;
27
 
28
	FCKToolbarSet.DOMElement.appendChild( oBreakDiv ) ;
29
}