]> git.immae.eu Git - perso/Immae/Projets/packagist/piedsjaloux-ckeditor-component.git/blobdiff - sources/core/dom/text.js
Add oembed
[perso/Immae/Projets/packagist/piedsjaloux-ckeditor-component.git] / sources / core / dom / text.js
index c31325900e4f7fe5efd0f9fd1433eff27b7406e6..e77a3d95846aba99530ce4e1ff899a1120a42d74 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md or http://ckeditor.com/license
  */
 
@@ -106,7 +106,7 @@ CKEDITOR.tools.extend( CKEDITOR.dom.text.prototype, {
                                retval.insertAfter( this );
                        } else {
                                // IE BUG: IE8+ does not update the childNodes array in DOM after splitText(),
-                               // we need to make some DOM changes to make it update. (#3436)
+                               // we need to make some DOM changes to make it update. (http://dev.ckeditor.com/ticket/3436)
                                var workaround = doc.createText( '' );
                                workaround.insertAfter( retval );
                                workaround.remove();