update address standardization for cust_location changes
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / _source / classes / fcktoolbarfontsizecombo.js
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js b/rt/share/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
deleted file mode 100644 (file)
index 4a4386d..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-/*\r
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben\r
- *\r
- * == BEGIN LICENSE ==\r
- *\r
- * Licensed under the terms of any of the following licenses at your\r
- * choice:\r
- *\r
- *  - GNU General Public License Version 2 or later (the "GPL")\r
- *    http://www.gnu.org/licenses/gpl.html\r
- *\r
- *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
- *    http://www.gnu.org/licenses/lgpl.html\r
- *\r
- *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
- *    http://www.mozilla.org/MPL/MPL-1.1.html\r
- *\r
- * == END LICENSE ==\r
- *\r
- * FCKToolbarPanelButton Class: Handles the Fonts combo selector.\r
- */\r
-\r
-var FCKToolbarFontSizeCombo = function( tooltip, style )\r
-{\r
-       this.CommandName        = 'FontSize' ;\r
-       this.Label              = this.GetLabel() ;\r
-       this.Tooltip    = tooltip ? tooltip : this.Label ;\r
-       this.Style              = style ? style : FCK_TOOLBARITEM_ICONTEXT ;\r
-\r
-       this.DefaultLabel = FCKConfig.DefaultFontSizeLabel || '' ;\r
-\r
-       this.FieldWidth = 70 ;\r
-}\r
-\r
-// Inherit from FCKToolbarSpecialCombo.\r
-FCKToolbarFontSizeCombo.prototype = new FCKToolbarFontFormatCombo( false ) ;\r
-\r
-FCKToolbarFontSizeCombo.prototype.GetLabel = function()\r
-{\r
-       return FCKLang.FontSize ;\r
-}\r
-\r
-FCKToolbarFontSizeCombo.prototype.GetStyles = function()\r
-{\r
-       var baseStyle = FCKStyles.GetStyle( '_FCK_Size' ) ;\r
-\r
-       if ( !baseStyle )\r
-       {\r
-               alert( "The FCKConfig.CoreStyles['FontFace'] setting was not found. Please check the fckconfig.js file" ) ;\r
-               return {} ;\r
-       }\r
-\r
-       var styles = {} ;\r
-\r
-       var fonts = FCKConfig.FontSizes.split(';') ;\r
-\r
-       for ( var i = 0 ; i < fonts.length ; i++ )\r
-       {\r
-               var fontParts = fonts[i].split('/') ;\r
-               var font = fontParts[0] ;\r
-               var caption = fontParts[1] || font ;\r
-\r
-               var style = FCKTools.CloneObject( baseStyle ) ;\r
-               style.SetVariable( 'Size', font ) ;\r
-               style.Label = caption ;\r
-\r
-               styles[ caption ] = style ;\r
-       }\r
-\r
-       return styles ;\r
-}\r
-\r
-FCKToolbarFontSizeCombo.prototype.RefreshActiveItems = FCKToolbarStyleCombo.prototype.RefreshActiveItems ;\r
-\r
-FCKToolbarFontSizeCombo.prototype.StyleCombo_OnBeforeClick = FCKToolbarFontsCombo.prototype.StyleCombo_OnBeforeClick ;\r