X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fadapters%2Fjquery.js;h=fb768ca70dfd5ddc478326f0c8ae37e7f0b9eca8;hb=a272c66d841421f8bf933c16535bdcde1c4649fc;hp=ec9850451b2c4d9505b3c29e3902cb2633cb185f;hpb=48b1db88210b4160dce439c6e3e32e14af8c106b;p=ckeditor.git diff --git a/_source/adapters/jquery.js b/_source/adapters/jquery.js index ec98504..fb768ca 100644 --- a/_source/adapters/jquery.js +++ b/_source/adapters/jquery.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -32,15 +32,21 @@ For licensing, see LICENSE.html or http://ckeditor.com/license (function() { /** - * Allow CKEditor to override jQuery.fn.val(). This results in ability to use val() - * function on textareas as usual and having those calls synchronized with CKEditor - * Rich Text Editor component. - * - * This config option is global and executed during plugin load. - * Can't be customized across editor instances. - * + * Allows CKEditor to override jQuery.fn.val(), making it possible to use the val() + * function on textareas, as usual, having it synchronized with CKEditor.
+ *
+ * This configuration option is global and executed during the jQuery Adapter loading. + * It can't be customized across editor instances. * @type Boolean * @example + * <script> + * CKEDITOR.config.jqueryOverrideVal = true; + * </script> + * <!-- Important: The JQuery adapter is loaded *after* setting jqueryOverrideVal --> + * <script src="/ckeditor/adapters/jquery.js"></script> + * @example + * // ... then later in the code ... + * * $( 'textarea' ).ckeditor(); * // ... * $( 'textarea' ).val( 'New content' );