From 7606a8dd8bcca18a1ff7c813b8ae873822c32859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Jarze=CC=A8bski?= Date: Fri, 13 Mar 2020 13:19:02 +0100 Subject: [PATCH] Fix docs for 'CKEDITOR.tools.getStyledSpans()'. --- core/tools.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/tools.js b/core/tools.js index 6c5349410f5..7d436ab2495 100644 --- a/core/tools.js +++ b/core/tools.js @@ -1188,9 +1188,8 @@ * @since 4.15.0 * @param {String} property CSS property which will be used in query. * @returns {Array} Returns an array of {@link CKEDITOR.dom.element}s. - * @member CKEDITOR.editor */ - getStyledSpans : function( property, source ) { + getStyledSpans: function( property, source ) { var spans = source.find( 'span[style*=' + property + ']' ).toArray(); // This is to filter out spans e.g. with background color when we want text color.