X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fcore%2Fhtmlparser%2Felement.js;fp=sources%2Fcore%2Fhtmlparser%2Felement.js;h=224d3e6a16dab29704abb717e717f6775f0e1c19;hp=0ed750e242108478441e3a4566faa79f7baa5503;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/core/htmlparser/element.js b/sources/core/htmlparser/element.js index 0ed750e..224d3e6 100644 --- a/sources/core/htmlparser/element.js +++ b/sources/core/htmlparser/element.js @@ -35,7 +35,7 @@ CKEDITOR.htmlParser.element = function( name, attributes ) { */ this.children = []; - // Reveal the real semantic of our internal custom tag name (#6639), + // Reveal the real semantic of our internal custom tag name (http://dev.ckeditor.com/ticket/6639), // when resolving whether it's block like. var realName = name || '', prefixed = realName.match( /^cke:(.*)/ ); @@ -543,8 +543,8 @@ CKEDITOR.htmlParser.cssStyle = function() { if ( !ctx.nonEditable && this.attributes.contenteditable == 'false' ) changes.push( 'nonEditable', true ); - // A context to be given nestedEditable must be nonEditable first (by inheritance) (#11372, #11698). - // Special case: #11504 - filter starts on , + // A context to be given nestedEditable must be nonEditable first (by inheritance) (http://dev.ckeditor.com/ticket/11372, http://dev.ckeditor.com/ticket/11698). + // Special case: http://dev.ckeditor.com/ticket/11504 - filter starts on , // so ctx.nonEditable has not been yet set to true. else if ( ctx.nonEditable && !ctx.nestedEditable && this.attributes.contenteditable == 'true' ) changes.push( 'nestedEditable', true );