Changeset 3983:10925bf4beff for plugins/dcCKEditor/js/ckeditor/adapters
- Timestamp:
- 06/27/19 11:15:42 (6 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCKEditor/js/ckeditor/adapters/jquery.js
r3759 r3983 1 1 /** 2 * @license Copyright (c) 2003-201 8, CKSource - Frederico Knabben. All rights reserved.2 * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 4 */ … … 13 13 * 14 14 * The jQuery Adapter allows for easy use of basic CKEditor functions and access to the internal API. 15 * To find more information about the jQuery Adapter, go to the [jQuery Adapter section](#!/guide/dev_jquery)15 * To find more information about the jQuery Adapter, go to the {@glink guide/dev_jquery jQuery Adapter section} 16 16 * of the Developer's Guide or see the "Create Editors with jQuery" sample. 17 17 * … … 35 35 * It cannot be customized across editor instances. 36 36 * 37 * Read more in the [documentation](#!/guide/dev_jquery).37 * Read more in the {@glink guide/dev_jquery documentation}. 38 38 * 39 39 * <script> … … 158 158 var editor = evt.editor; 159 159 160 setTimeout( function () {160 setTimeout( function waitForEditor() { 161 161 // Delay bit more if editor is still not ready. 162 162 if ( !editor.element ) { 163 setTimeout( arguments.callee, 100 );163 setTimeout( waitForEditor, 100 ); 164 164 return; 165 165 } … … 266 266 // Editor is already during creation process, bind our code to the event. 267 267 editor.once( 'instanceReady', function() { 268 setTimeout( function () {268 setTimeout( function waitForEditor() { 269 269 // Delay bit more if editor is still not ready. 270 270 if ( !editor.element ) { 271 setTimeout( arguments.callee, 100 );271 setTimeout( waitForEditor, 100 ); 272 272 return; 273 273 } … … 284 284 285 285 /** 286 * The [jQuery Promise object]( (http://api.jquery.com/promise/)) that handles the asynchronous constructor.286 * The [jQuery Promise object](http://api.jquery.com/promise/) that handles the asynchronous constructor. 287 287 * This promise will be resolved after **all** of the constructors. 288 288 *
Note: See TracChangeset
for help on using the changeset viewer.