import rt 3.8.7
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / _source / classes / fcktoolbarbreak_ie.js
1 /*\r
2  * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
3  * Copyright (C) 2003-2009 Frederico Caldeira Knabben\r
4  *\r
5  * == BEGIN LICENSE ==\r
6  *\r
7  * Licensed under the terms of any of the following licenses at your\r
8  * choice:\r
9  *\r
10  *  - GNU General Public License Version 2 or later (the "GPL")\r
11  *    http://www.gnu.org/licenses/gpl.html\r
12  *\r
13  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
14  *    http://www.gnu.org/licenses/lgpl.html\r
15  *\r
16  *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
17  *    http://www.mozilla.org/MPL/MPL-1.1.html\r
18  *\r
19  * == END LICENSE ==\r
20  *\r
21  * FCKToolbarBreak Class: breaks the toolbars.\r
22  * It makes it possible to force the toolbar to break to a new line.\r
23  * This is the IE specific implementation.\r
24  */\r
25 \r
26 var FCKToolbarBreak = function()\r
27 {}\r
28 \r
29 FCKToolbarBreak.prototype.Create = function( targetElement )\r
30 {\r
31         var oBreakDiv = FCKTools.GetElementDocument( targetElement ).createElement( 'div' ) ;\r
32 \r
33         oBreakDiv.className = 'TB_Break' ;\r
34 \r
35         oBreakDiv.style.clear = FCKLang.Dir == 'rtl' ? 'left' : 'right' ;\r
36 \r
37         targetElement.appendChild( oBreakDiv ) ;\r
38 }\r