Dotclear


Ignore:
Timestamp:
06/27/19 11:15:42 (6 years ago)
Author:
franck <carnet.franck.paul@…>
Branch:
default
Message:

Update CKEditor from 4.10 to 4.12 (stable)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • plugins/dcCKEditor/js/ckeditor/adapters/jquery.js

    r3759 r3983  
    11/** 
    2  * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 
     2 * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 
    33 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 
    44 */ 
     
    1313 * 
    1414 * 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} 
    1616 * of the Developer's Guide or see the "Create Editors with jQuery" sample. 
    1717 * 
     
    3535      * It cannot be customized across editor instances. 
    3636      * 
    37       * Read more in the [documentation](#!/guide/dev_jquery). 
     37      * Read more in the {@glink guide/dev_jquery documentation}. 
    3838      * 
    3939      *        <script> 
     
    158158                              var editor = evt.editor; 
    159159 
    160                               setTimeout( function() { 
     160                              setTimeout( function waitForEditor() { 
    161161                                   // Delay bit more if editor is still not ready. 
    162162                                   if ( !editor.element ) { 
    163                                         setTimeout( arguments.callee, 100 ); 
     163                                        setTimeout( waitForEditor, 100 ); 
    164164                                        return; 
    165165                                   } 
     
    266266                         // Editor is already during creation process, bind our code to the event. 
    267267                         editor.once( 'instanceReady', function() { 
    268                               setTimeout( function() { 
     268                              setTimeout( function waitForEditor() { 
    269269                                   // Delay bit more if editor is still not ready. 
    270270                                   if ( !editor.element ) { 
    271                                         setTimeout( arguments.callee, 100 ); 
     271                                        setTimeout( waitForEditor, 100 ); 
    272272                                        return; 
    273273                                   } 
     
    284284 
    285285               /** 
    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. 
    287287                * This promise will be resolved after **all** of the constructors. 
    288288                * 
Note: See TracChangeset for help on using the changeset viewer.

Sites map