Changeset 7181 for CKEditor/trunk
- Timestamp:
- 08/04/11 16:31:39 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/colorbutton/plugin.js
r6985 r7181 4 4 */ 5 5 6 /** 7 * @fileOverview The "colorbutton" plugin that makes it possible to assign 8 * text and background colors to editor contents. 9 * 10 */ 6 11 CKEDITOR.plugins.add( 'colorbutton', 7 12 { … … 226 231 227 232 /** 228 * Whether to enable the "More Colors..."button in the color selectors.233 * Whether to enable the <strong>More Colors</strong> button in the color selectors. 229 234 * @name CKEDITOR.config.colorButton_enableMore 230 * @default true235 * @default <code>true</code> 231 236 * @type Boolean 232 237 * @example … … 235 240 236 241 /** 237 * Defines the colors to be displayed in the color selectors. It's a string238 * containing thehexadecimal notation for HTML colors, without the "#" prefix.239 * 240 * Since 3.3: A name may be optionally defined by prefixing the entries with the241 * name and the slash character. For example, "FontColor1/FF9900" will be242 * displayed as the color #FF9900 in the selector, but will be output tedas "FontColor1".242 * Defines the colors to be displayed in the color selectors. This is a string 243 * containing hexadecimal notation for HTML colors, without the "#" prefix. 244 * <br /><br /> 245 * Since 3.3: A color name may optionally be defined by prefixing the entries with 246 * a name and the slash character. For example, "FontColor1/FF9900" will be 247 * displayed as the color #FF9900 in the selector, but will be output as "FontColor1". 243 248 * @name CKEDITOR.config.colorButton_colors 244 249 * @type String 245 * @default '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'250 * @default <code>'000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'</code> 246 251 * @example 247 252 * // Brazil colors only. … … 258 263 259 264 /** 260 * Holds the style definition to be used to applythe text foreground color.265 * Stores the style definition that applies the text foreground color. 261 266 * @name CKEDITOR.config.colorButton_foreStyle 262 267 * @type Object 263 * @example 264 * // This is basically the default setting value. 268 * @default (see example) 269 * @example 270 * // This is actually the default value. 265 271 * config.colorButton_foreStyle = 266 272 * { … … 277 283 278 284 /** 279 * Holds the style definition to be used to applythe text background color.285 * Stores the style definition that applies the text background color. 280 286 * @name CKEDITOR.config.colorButton_backStyle 281 287 * @type Object 282 * @example 283 * // This is basically the default setting value. 288 * @default (see example) 289 * @example 290 * // This is actually the default value. 284 291 * config.colorButton_backStyle = 285 292 * {
Note: See TracChangeset
for help on using the changeset viewer.
