X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fsmiley%2Fplugin.js;h=9156be8400351a92352ab469da1f9932f706ca0c;hb=2f22c0c38f17e75be5541089076885442aaa2377;hp=d4ecda6987791e5b48daae8ba9a3ae297dd396ef;hpb=e7789c1ad838194d45eeee6ac2eb6e55f5cf35a1;p=ckeditor.git diff --git a/_source/plugins/smiley/plugin.js b/_source/plugins/smiley/plugin.js index d4ecda6..9156be8 100644 --- a/_source/plugins/smiley/plugin.js +++ b/_source/plugins/smiley/plugin.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -25,7 +25,7 @@ CKEDITOR.plugins.add( 'smiley', * a slash. * @name CKEDITOR.config.smiley_path * @type String - * @default {@link CKEDITOR.basePath} + 'plugins/smiley/images/' + * @default CKEDITOR.basePath + 'plugins/smiley/images/' * @example * config.smiley_path = 'http://www.example.com/images/smileys/'; * @example @@ -64,7 +64,7 @@ CKEDITOR.config.smiley_images = [ * config.smiley_descriptions = * [ * 'smiley', 'sad', 'wink', 'laugh', 'frown', 'cheeky', 'blush', 'surprise', - * 'indecision', 'angry', 'angle', 'cool', 'devil', 'crying', 'enlightened', 'no', + * 'indecision', 'angry', 'angel', 'cool', 'devil', 'crying', 'enlightened', 'no', * 'yes', 'heart', 'broken heart', 'kiss', 'mail' * ]; * @example @@ -79,6 +79,16 @@ CKEDITOR.config.smiley_images = [ CKEDITOR.config.smiley_descriptions = [ 'smiley', 'sad', 'wink', 'laugh', 'frown', 'cheeky', 'blush', 'surprise', - 'indecision', 'angry', 'angle', 'cool', 'devil', 'crying', 'enlightened', 'no', + 'indecision', 'angry', 'angel', 'cool', 'devil', 'crying', 'enlightened', 'no', 'yes', 'heart', 'broken heart', 'kiss', 'mail' ]; + +/** + * The number of columns to be generated by the smilies matrix. + * @name CKEDITOR.config.smiley_columns + * @type Number + * @default 8 + * @since 3.3.2 + * @example + * config.smiley_columns = 6; + */